Testing CRS Sandbox Server - anonymized.postman_collection.json
{
"info": {
"_postman_id": "650a4205-b5e0-42a5-92da-468aee8160de",
"name": "Testing eCredit Data API Dev Server",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "User Login (Send this first)",
"item": [
{
"name": "User Login",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"if(data) {",
" if(data.token) pm.collectionVariables.set(\"utoken\",data.token);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\": \"{{mware_uname}}\",\n \"password\": \"{{mware_passwd}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/users/login",
"host": [
"{{url}}"
],
"path": [
"users",
"login"
]
}
},
"response": []
}
]
},
{
"name": "MCL Credit Reports (MCL credentials are configured for each CRS account)",
"item": [
{
"name": "[Step 1] MCL New Order Request (JSON)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {",
" pm.collectionVariables.set(\"vendorOrderIdentifer\",data.dealsets.dealsets[0].deals.deals[0].services.services[0].serviceproductfulfillment.serviceproductfulfillmentdetail.vendorOrderIdentifier.value);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"aboutversions\": {\n \"aboutversions\": [\n {\n \"dataVersionIdentifier\": {\n \"value\": \"201703\"\n }\n }\n ]\n },\n \"dealsets\": {\n \"dealsets\": [\n {\n \"deals\": {\n \"deals\": [\n {\n \"parties\": {\n \"parties\": [\n {\n \"individual\": {\n \"name\": {\n \"firstName\": {\n \"value\": \"Marisol\"\n },\n \"lastName\": {\n \"value\": \"Testcase\"\n },\n \"middleName\": {\n \"value\": \"L\"\n },\n \"suffixName\": {}\n }\n },\n \"roles\": {\n \"roles\": [\n {\n \"borrower\": {\n \"residences\": {\n \"residences\": [\n {\n \"address\": {\n \"addressLineText\": {\n \"value\": \"220 Locust Ave\"\n },\n \"cityName\": {\n \"value\": \"Anthill\"\n },\n \"countryCode\": {\n \"value\": \"US\"\n },\n \"postalCode\": {\n \"value\": \"65488\"\n },\n \"stateCode\": {\n \"value\": \"MO\"\n }\n },\n \"residencedetail\": {\n \"borrowerResidencyType\": {\n \"value\": \"CURRENT\"\n }\n }\n }\n ]\n }\n },\n \"roledetail\": {\n \"partyRoleType\": {\n \"value\": \"BORROWER\"\n }\n }\n }\n ]\n },\n \"taxpayeridentifiers\": {\n \"taxpayeridentifiers\": [\n {\n \"taxpayerIdentifierType\": {\n \"value\": \"SOCIAL_SECURITY_NUMBER\"\n },\n \"taxpayerIdentifierValue\": {\n \"value\": \"000000009\"\n }\n }\n ]\n },\n \"label\": \"Party1\"\n }\n ]\n },\n \"relationships\": {\n \"relationships\": [\n {\n \"arcrole\": \"urn:fdc:Meridianlink.com:2017:mortgage/PARTY_IsVerifiedBy_SERVICE\",\n \"from\": \"Party1\",\n \"to\": \"Service1\"\n }\n ]\n },\n \"services\": {\n \"services\": [\n {\n \"credit\": {\n \"creditrequest\": {\n \"creditrequestdatas\": {\n \"creditrequestdatas\": [\n {\n \"creditrepositoryincluded\": {\n \"creditRepositoryIncludedEquifaxIndicator\": {\n \"value\": true\n },\n \"creditRepositoryIncludedExperianIndicator\": {\n \"value\": true\n },\n \"creditRepositoryIncludedTransUnionIndicator\": {\n \"value\": true\n },\n \"extension\": {\n \"other\": {\n \"requestEquifaxScore\": true,\n \"requestExperianFraud\": true,\n \"requestExperianScore\": true,\n \"requestTransUnionFraud\": true,\n \"requestTransUnionScore\": true\n }\n }\n },\n \"creditrequestdatadetail\": {\n \"creditReportRequestActionType\": {\n \"value\": \"SUBMIT\"\n }\n }\n }\n ]\n }\n }\n },\n \"serviceproduct\": {\n \"serviceproductrequest\": {\n \"serviceproductdetail\": {\n \"serviceProductDescription\": {\n \"value\": \"CreditOrder\"\n },\n \"extension\": {\n \"other\": {\n \"servicepreferredresponseformats\": {\n \"servicepreferredresponseformats\": [\n {\n \"servicepreferredresponseformatdetail\": {\n \"preferredResponseFormatType\": \"XML\"\n }\n },\n {\n \"servicepreferredresponseformatdetail\": {\n \"preferredResponseFormatType\": \"HTML\"\n }\n },\n {\n \"servicepreferredresponseformatdetail\": {\n \"preferredResponseFormatType\": \"PDF\"\n }\n }\n ]\n }\n }\n }\n }\n }\n },\n \"label\": \"Service1\"\n }\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"messageType\": \"REQUEST\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/mcl/request",
"host": [
"{{url}}"
],
"path": [
"mcl",
"request"
]
}
},
"response": []
},
{
"name": "[Step 2] MCL Polling Request (JSON)",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"aboutversions\": {\n \"aboutversions\": [\n {\n \"dataVersionIdentifier\": {\n \"value\": \"201703\"\n }\n }\n ]\n },\n \"dealsets\": {\n \"dealsets\": [\n {\n \"deals\": {\n \"deals\": [\n {\n \"parties\": {\n \"parties\": [\n {\n \"individual\": {\n \"name\": {\n \"firstName\": {\n \"value\": \"Marisol\"\n },\n \"lastName\": {\n \"value\": \"Testcase\"\n },\n \"middleName\": {\n \"value\": \"L\"\n },\n \"suffixName\": {}\n }\n },\n \"roles\": {\n \"roles\": [\n {\n \"borrower\": {\n \"residences\": {\n \"residences\": [\n {\n \"address\": {\n \"addressLineText\": {\n \"value\": \"220 Locust Ave\"\n },\n \"cityName\": {\n \"value\": \"Anthill\"\n },\n \"countryCode\": {\n \"value\": \"US\"\n },\n \"postalCode\": {\n \"value\": \"65488\"\n },\n \"stateCode\": {\n \"value\": \"MO\"\n }\n },\n \"residencedetail\": {\n \"borrowerResidencyType\": {\n \"value\": \"CURRENT\"\n }\n }\n }\n ]\n }\n },\n \"roledetail\": {\n \"partyRoleType\": {\n \"value\": \"BORROWER\"\n }\n }\n }\n ]\n },\n \"taxpayeridentifiers\": {\n \"taxpayeridentifiers\": [\n {\n \"taxpayerIdentifierType\": {\n \"value\": \"SOCIAL_SECURITY_NUMBER\"\n },\n \"taxpayerIdentifierValue\": {\n \"value\": \"000000001\"\n }\n }\n ]\n },\n \"label\": \"Party1\"\n }\n ]\n },\n \"relationships\": {\n \"relationships\": [\n {\n \"arcrole\": \"urn:fdc:Meridianlink.com:2017:mortgage/PARTY_IsVerifiedBy_SERVICE\",\n \"from\": \"Party1\",\n \"to\": \"Service1\"\n }\n ]\n },\n \"services\": {\n \"services\": [\n {\n \"credit\": {\n \"creditrequest\": {\n \"creditrequestdatas\": {\n \"creditrequestdatas\": [\n {\n \"creditrepositoryincluded\": {\n \"creditRepositoryIncludedEquifaxIndicator\": {\n \"value\": true\n },\n \"creditRepositoryIncludedExperianIndicator\": {\n \"value\": true\n },\n \"creditRepositoryIncludedTransUnionIndicator\": {\n \"value\": true\n },\n \"extension\": {\n \"other\": {\n \"requestEquifaxScore\": true,\n \"requestExperianFraud\": true,\n \"requestExperianScore\": true,\n \"requestTransUnionFraud\": true,\n \"requestTransUnionScore\": true\n }\n }\n },\n \"creditrequestdatadetail\": {\n \"creditReportRequestActionType\": {\n \"value\": \"STATUS_QUERY\"\n }\n }\n }\n ]\n }\n }\n },\n \"serviceproduct\": {\n \"serviceproductrequest\": {\n \"serviceproductdetail\": {\n \"serviceProductDescription\": {\n \"value\": \"CreditOrder\"\n },\n \"extension\": {\n \"other\": {\n \"servicepreferredresponseformats\": {\n \"servicepreferredresponseformats\": [\n {\n \"servicepreferredresponseformatdetail\": {\n \"preferredResponseFormatType\": \"XML\"\n }\n },\n {\n \"servicepreferredresponseformatdetail\": {\n \"preferredResponseFormatType\": \"HTML\"\n }\n },\n {\n \"servicepreferredresponseformatdetail\": {\n \"preferredResponseFormatType\": \"PDF\"\n }\n }\n ]\n }\n }\n }\n }\n }\n },\n \"serviceproductfulfillment\": {\n \"contactpoints\": {\n \"contactpoints\": [],\n \"otherAttributes\": {}\n },\n \"serviceproductfulfillmentdetail\": {\n \"vendorOrderIdentifier\": {\n \"value\": \"Insert vendorOrderIdentifier that you received from [Step 1]\",\n \"otherAttributes\": {}\n },\n \"extension\": {\n \"other\": {\n \"anies\": []\n }\n },\n \"otherAttributes\": {}\n },\n \"otherAttributes\": {}\n },\n \"label\": \"Service1\"\n }\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"messageType\": \"REQUEST\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/mcl/request",
"host": [
"{{url}}"
],
"path": [
"mcl",
"request"
]
}
},
"response": []
}
]
},
{
"name": "Equifax Credit Report",
"item": [
{
"name": "Testcases",
"item": [
{
"name": "Equifax Credit Report (ASAD)(528)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data && data.links && data.links[0] && data.links[0].href) {",
" pm.collectionVariables.set(\"equifaxPDFId\",data.links[0].href.split(\"/\").pop());",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumers\": {\n \"name\": [\n {\n \"identifier\": \"current\",\n \"firstName\": \"ASAD\",\n \"lastName\": \"YCSWL\"\n }\n ],\n \"socialNum\": [\n {\n \"identifier\": \"current\",\n \"number\": \"666176062\"\n }\n ],\n \"dateOfBirth\": \"05061985\",\n \"addresses\": [\n {\n \"identifier\": \"current\",\n \"houseNumber\": \"8615\",\n \"streetName\": \"Black Tern\",\n \"streetType\": \"LN\",\n \"city\": \"HOUSTON\",\n \"state\": \"TX\",\n \"zip\": \"77040\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"identifier\": \"current\",\n \"number\": \"7135551212\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/equifax/credit-report",
"host": [
"{{url}}"
],
"path": [
"equifax",
"credit-report"
]
}
},
"response": []
},
{
"name": "Equifax Credit Report (LUZ)(700)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data && data.links && data.links[0] && data.links[0].href) {",
" pm.collectionVariables.set(\"equifaxPDFId\",data.links[0].href.split(\"/\").pop());",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumers\": {\n \"name\": [\n {\n \"identifier\": \"current\",\n \"firstName\": \"LUZ\",\n \"lastName\": \"YYPLNL/HIGXSL\"\n }\n ],\n \"socialNum\": [\n {\n \"identifier\": \"current\",\n \"number\": \"666161234\"\n }\n ],\n \"dateOfBirth\": \"09121971\",\n \"addresses\": [\n {\n \"identifier\": \"current\",\n \"houseNumber\": \"B9\",\n \"streetName\": \"DLEEI RXIGPL\",\n \"streetType\": \"URB SANTA CLARA\",\n \"city\": \"GUAYNABO\",\n \"state\": \"PR\",\n \"zip\": \"969\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"identifier\": \"current\",\n \"number\": \"7875551212\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/equifax/credit-report",
"host": [
"{{url}}"
],
"path": [
"equifax",
"credit-report"
]
}
},
"response": []
},
{
"name": "Equifax Credit Report",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data && data.links && data.links[0] && data.links[0].href) {",
" pm.collectionVariables.set(\"equifaxPDFId\",data.links[0].href.split(\"/\").pop());",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumers\": {\n \"name\": [\n {\n \"identifier\": \"current\",\n \"firstName\": \"TYEIKA\",\n \"lastName\": \"RKZWPFLXNB\"\n }\n ],\n \"socialNum\": [\n {\n \"identifier\": \"current\",\n \"number\": \"666800459\"\n }\n ],\n \"dateOfBirth\": \"05061985\",\n \"addresses\": [\n {\n \"identifier\": \"current\",\n \"houseNumber\": \"5523\",\n \"streetName\": \"MOORE\",\n \"streetType\": \"ST #1\",\n \"city\": \"FORT HOOD\",\n \"state\": \"TX\",\n \"zip\": \"76544\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/equifax/credit-report",
"host": [
"{{url}}"
],
"path": [
"equifax",
"credit-report"
]
}
},
"response": []
},
{
"name": "Equifax Credit Report",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data && data.links && data.links[0] && data.links[0].href) {",
" pm.collectionVariables.set(\"equifaxPDFId\",data.links[0].href.split(\"/\").pop());",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumers\": {\n \"name\": [\n {\n \"identifier\": \"current\",\n \"firstName\": \"ASAD\",\n \"lastName\": \"YCSWL\"\n }\n ],\n \"socialNum\": [\n {\n \"identifier\": \"current\",\n \"number\": \"666176062\"\n }\n ],\n \"dateOfBirth\": \"05061985\",\n \"addresses\": [\n {\n \"identifier\": \"current\",\n \"houseNumber\": \"8615\",\n \"streetName\": \"Black Tern\",\n \"streetType\": \"LN\",\n \"city\": \"HOUSTON\",\n \"state\": \"TX\",\n \"zip\": \"77040\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"identifier\": \"current\",\n \"number\": \"7135551212\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/equifax/credit-report",
"host": [
"{{url}}"
],
"path": [
"equifax",
"credit-report"
]
}
},
"response": []
}
]
},
{
"name": "Equifax Credit Report",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data && data.links && data.links[0] && data.links[0].href) {",
" pm.collectionVariables.set(\"equifaxPDFId\",data.links[0].href.split(\"/\").pop());",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumers\": {\n \"name\": [\n {\n \"identifier\": \"current\",\n \"firstName\": \"ASAD\",\n \"lastName\": \"YCSWL\"\n }\n ],\n \"socialNum\": [\n {\n \"identifier\": \"current\",\n \"number\": \"666176062\"\n }\n ],\n \"dateOfBirth\": \"05061985\",\n \"addresses\": [\n {\n \"identifier\": \"current\",\n \"houseNumber\": \"8615\",\n \"streetName\": \"Black Tern\",\n \"streetType\": \"LN\",\n \"city\": \"HOUSTON\",\n \"state\": \"TX\",\n \"zip\": \"77040\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"identifier\": \"current\",\n \"number\": \"7135551212\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/equifax/credit-report",
"host": [
"{{url}}"
],
"path": [
"equifax",
"credit-report"
]
}
},
"response": []
},
{
"name": "Equifax Credit Report PDF Fetch Existing",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumers\": {\n \"name\": [\n {\n \"identifier\": \"current\",\n \"firstName\": \"ASAD\",\n \"lastName\": \"YCSWL\"\n }\n ],\n \"socialNum\": [\n {\n \"identifier\": \"current\",\n \"number\": \"666176062\"\n }\n ],\n \"dateOfBirth\": \"05061985\",\n \"addresses\": [\n {\n \"identifier\": \"current\",\n \"houseNumber\": \"8615\",\n \"streetName\": \"Black Tern\",\n \"streetType\": \"LN\",\n \"city\": \"HOUSTON\",\n \"state\": \"TX\",\n \"zip\": \"77040\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"identifier\": \"current\",\n \"number\": \"7135551212\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/equifax/credit-report/{{equifaxPDFId}}",
"host": [
"{{url}}"
],
"path": [
"equifax",
"credit-report",
"{{equifaxPDFId}}"
]
}
},
"response": []
},
{
"name": "Equifax Credit Report PDF",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumers\": {\n \"name\": [\n {\n \"identifier\": \"current\",\n \"firstName\": \"ASAD\",\n \"lastName\": \"YCSWL\"\n }\n ],\n \"socialNum\": [\n {\n \"identifier\": \"current\",\n \"number\": \"666176062\"\n }\n ],\n \"dateOfBirth\": \"05061985\",\n \"addresses\": [\n {\n \"identifier\": \"current\",\n \"houseNumber\": \"8615\",\n \"streetName\": \"Black Tern\",\n \"streetType\": \"LN\",\n \"city\": \"HOUSTON\",\n \"state\": \"TX\",\n \"zip\": \"77040\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"identifier\": \"current\",\n \"number\": \"7135551212\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/equifax/pdf-credit-report",
"host": [
"{{url}}"
],
"path": [
"equifax",
"pdf-credit-report"
]
}
},
"response": []
}
]
},
{
"name": "Experian Credit Report",
"item": [
{
"name": "Need more info",
"item": [
{
"name": "-Extended View Score",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"PAUL\",\n \"middleName\": \"MARIE\",\n \"firstName\": \"BURNIA\"\n },\n \"ssn\": {\n \"ssn\": \"666390426\"\n },\n \"currentAddress\": {\n \"line1\": \"19103 TAJAUTA AVE\",\n \"city\": \"CARSON\",\n \"state\": \"CA\",\n \"zipCode\": \"907462742\"\n },\n \"phone\": [\n {\n \"number\": \"3107649465\"\n }\n ]\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/extended-view-score",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"extended-view-score"
]
}
},
"response": []
},
{
"name": "-Extended View Attributes",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"FARR\",\n \"firstName\": \"SHAWN\",\n \"middleName\": \"R\"\n },\n \"ssn\": {\n \"ssn\": \"111-11-1111\"\n },\n \"currentAddress\": {\n \"line1\": \"9999 E 1500 S\",\n \"city\": \"BOUNTI FUL\",\n \"state\": \"UT\",\n \"zipCode\": \"84010\"\n }\n }\n },\n \"addOns\": {\n \"demographics\": \"Geocode and Phone\",\n \"riskModels\": {\n \"modelIndicator\": [\n \"AE\",\n \"F3\",\n \"FM\",\n \"W\",\n \"Q\"\n ]\n },\n \"fraudShield\": \"Y\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/extended-view-attributes",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"extended-view-attributes"
]
}
},
"response": []
},
{
"name": "-Extended View Attributes and Score",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"FARR\",\n \"firstName\": \"SHAWN\",\n \"middleName\": \"R\"\n },\n \"ssn\": {\n \"ssn\": \"111-11-1111\"\n },\n \"currentAddress\": {\n \"line1\": \"9999 E 1500 S\",\n \"city\": \"BOUNTI FUL\",\n \"state\": \"UT\",\n \"zipCode\": \"84010\"\n }\n }\n },\n \"addOns\": {\n \"demographics\": \"Geocode and Phone\",\n \"riskModels\": {\n \"modelIndicator\": [\n \"AE\",\n \"F3\",\n \"FM\",\n \"W\",\n \"Q\"\n ]\n },\n \"fraudShield\": \"Y\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/extended-view-attributes-and-score",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"extended-view-attributes-and-score"
]
}
},
"response": []
},
{
"name": "-Employment Insight",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"FARR\",\n \"firstName\": \"SHAWN\",\n \"middleName\": \"R\"\n },\n \"ssn\": {\n \"ssn\": \"111-11-1111\"\n },\n \"currentAddress\": {\n \"line1\": \"9999 E 1500 S\",\n \"city\": \"BOUNTI FUL\",\n \"state\": \"UT\",\n \"zipCode\": \"84010\"\n }\n }\n },\n \"addOns\": {\n \"demographics\": \"Geocode and Phone\",\n \"riskModels\": {\n \"modelIndicator\": [\n \"AE\",\n \"F3\",\n \"FM\",\n \"W\",\n \"Q\"\n ]\n },\n \"fraudShield\": \"Y\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/employment-insight",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"employment-insight"
]
}
},
"response": []
},
{
"name": "-Connect Check",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"PAUL\",\n \"middleName\": \"MARIE\",\n \"firstName\": \"BURNIA\"\n },\n \"ssn\": {\n \"ssn\": \"666390426\"\n },\n \"currentAddress\": {\n \"line1\": \"19103 TAJAUTA AVE\",\n \"city\": \"CARSON\",\n \"state\": \"CA\",\n \"zipCode\": \"907462742\"\n },\n \"phone\": [\n {\n \"number\": \"3107649465\"\n }\n ]\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/connect-check",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"connect-check"
]
}
},
"response": []
}
]
},
{
"name": "Experian Credit Report",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"PAUL\",\n \"middleName\": \"MARIE\",\n \"firstName\": \"BURNIA\"\n },\n \"ssn\": {\n \"ssn\": \"666390426\"\n },\n \"currentAddress\": {\n \"line1\": \"19103 TAJAUTA AVE\",\n \"city\": \"CARSON\",\n \"state\": \"CA\",\n \"zipCode\": \"907462742\"\n },\n \"phone\": [\n {\n \"number\": \"3107649465\"\n }\n ]\n }\n },\n \"addOns\": {\n \"demographics\": \"Geocode and Phone\",\n \"riskModels\": {\n \"modelIndicator\": [\n \"V2\",\n \"V3\"\n ],\n \"scorePercentile\": \"Y\"\n },\n \"summaries\": {\n \"summaryType\": [\n \"Profile Summary\"\n ]\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/credit-report",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"credit-report"
]
}
},
"response": []
},
{
"name": "TEC Connect Credit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"PAUL\",\n \"middleName\": \"MARIE\",\n \"firstName\": \"BURNIA\"\n },\n \"ssn\": {\n \"ssn\": \"666390426\"\n },\n \"currentAddress\": {\n \"line1\": \"19103 TAJAUTA AVE\",\n \"city\": \"CARSON\",\n \"state\": \"CA\",\n \"zipCode\": \"907462742\"\n },\n \"phone\": [\n {\n \"number\": \"3107649465\"\n }\n ]\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/tec-connect-credit",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"tec-connect-credit"
]
}
},
"response": []
},
{
"name": "Healthcare Credit Profile",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"PAUL\",\n \"middleName\": \"MARIE\",\n \"firstName\": \"BURNIA\"\n },\n \"ssn\": {\n \"ssn\": \"666390426\"\n },\n \"currentAddress\": {\n \"line1\": \"19103 TAJAUTA AVE\",\n \"city\": \"CARSON\",\n \"state\": \"CA\",\n \"zipCode\": \"907462742\"\n },\n \"phone\": [\n {\n \"number\": \"3107649465\"\n }\n ]\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/healthcare-credit-profile",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"healthcare-credit-profile"
]
}
},
"response": []
},
{
"name": "Automotive Credit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"consumerPii\": {\n \"primaryApplicant\": {\n \"name\": {\n \"lastName\": \"PAUL\",\n \"middleName\": \"MARIE\",\n \"firstName\": \"BURNIA\"\n },\n \"ssn\": {\n \"ssn\": \"666390426\"\n },\n \"currentAddress\": {\n \"line1\": \"19103 TAJAUTA AVE\",\n \"city\": \"CARSON\",\n \"state\": \"CA\",\n \"zipCode\": \"907462742\"\n },\n \"phone\": [\n {\n \"number\": \"3107649465\"\n }\n ]\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/credit-profile/automotive-credit",
"host": [
"{{url}}"
],
"path": [
"experian",
"credit-profile",
"automotive-credit"
]
}
},
"response": []
}
]
},
{
"name": "TransUnion Credit Report",
"item": [
{
"name": "Model Report",
"item": [
{
"name": "Model Report (FRAZER)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"FRAZER\",\n \"middle\": null,\n \"last\": \"CRAINE\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"1113\",\n \"name\": \"E SNOWBILL\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666449944\"\n }\n ]\n }\n }\n ]\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/credit-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"credit-report"
]
}
},
"response": []
},
{
"name": "Model Report (ZELNINO)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"ZELNINO\",\n \"middle\": \"XX\",\n \"last\": \"WINTER\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"760\",\n \"preDirectional\": \"W\",\n \"name\": \"SPROUL\",\n \"type\": \"RD\",\n \"unit\": {\n \"number\": null\n }\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666125812\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (CRANBERRY)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Saucey\",\n \"middle\": null,\n \"last\": \"Cranberry\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"876\",\n \"name\": \"Turkey\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666222525\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Sunny)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Sunny\",\n \"middle\": null,\n \"last\": \"Day\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"333\",\n \"name\": \"Hop\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666885678\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Cary)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Cary\",\n \"middle\": null,\n \"last\": \"Ggrant\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"139\",\n \"name\": \"Main\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666665985\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Raymundo)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Raymundo\",\n \"middle\": null,\n \"last\": \"Fmacommon\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"523\",\n \"name\": \"Lillian\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666941456\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Garry)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Garry\",\n \"middle\": null,\n \"last\": \"Fqacommon\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"547\",\n \"name\": \"Hazel\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666240723\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Theresa)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Theresa\",\n \"middle\": null,\n \"last\": \"Ftacommon\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"4815\",\n \"name\": \"Donald\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666860116\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Shaun)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Shaun\",\n \"middle\": null,\n \"last\": \"Ffbrown\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"1807\",\n \"name\": \"Huntsville\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666123333\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Line)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Line\",\n \"middle\": null,\n \"last\": \"Dancer\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"525\",\n \"name\": \"Country\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666393933\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Michael)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Michael\",\n \"middle\": null,\n \"last\": \"Fvacommon\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"573\",\n \"name\": \"Pell\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666380731\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Calvin)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Calvin\",\n \"middle\": null,\n \"last\": \"Fyacommon\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"177\",\n \"name\": \"Willow\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666849896\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Gary)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Gary\",\n \"middle\": null,\n \"last\": \"Golfer\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"256\",\n \"name\": \"Parr\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666117788\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Model Report (Juice)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"Juice\",\n \"middle\": null,\n \"last\": \"Grape\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"224\",\n \"name\": \"South\"\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666113332\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
}
]
},
{
"name": "Credit Report",
"item": [
{
"name": "Credit Report (FRAZER)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"ZELNINO\",\n \"middle\": \"XX\",\n \"last\": \"WINTER\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"760\",\n \"preDirectional\": \"W\",\n \"name\": \"SPROUL\",\n \"type\": \"RD\",\n \"unit\": {\n \"number\": null\n }\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666125812\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/model-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"model-report"
]
}
},
"response": []
},
{
"name": "Credit Report (ZELNINO)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"1\",\n \"subjectRecords\": [\n {\n \"indicative\": {\n \"names\": [\n {\n \"person\": {\n \"first\": \"ZELNINO\",\n \"middle\": \"XX\",\n \"last\": \"WINTER\"\n }\n }\n ],\n \"addresses\": [\n {\n \"status\": \"CURRENT\",\n \"street\": {\n \"number\": \"760\",\n \"preDirectional\": \"W\",\n \"name\": \"SPROUL\",\n \"type\": \"RD\",\n \"unit\": {\n \"number\": null\n }\n },\n \"location\": {\n \"city\": \"FANTASY ISLAND\",\n \"state\": \"IL\",\n \"zipCode\": \"60750\"\n },\n \"residence\": null\n }\n ],\n \"socialSecurities\": [\n {\n \"@source\": \"input\",\n \"number\": \"666125812\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/transunion/credit-report",
"host": [
"{{url}}"
],
"path": [
"transunion",
"credit-report"
]
}
},
"response": []
}
]
}
]
},
{
"name": "Criminal",
"item": [
{
"name": "Criminal",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {",
" pm.collectionVariables.set(\"criminalResponseID\",data.orderResponse.responseID);",
"}"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"reference\": \"myRef123\",\n \"subjectInfo\": {\n \"last\": \"Consumer\",\n \"first\": \"Jonathan\",\n \"middle\": \"\",\n \"dob\": \"01-01-1982\",\n \"ssn\": \"666-44-3321\",\n \"houseNumber\": \"1803\",\n \"streetName\": \"Norma\",\n \"city\": \"Cottonwood\",\n \"state\": \"CA\",\n \"zip\": \"91502\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/criminal/new-request",
"host": [
"{{url}}"
],
"path": [
"criminal",
"new-request"
]
}
},
"response": [
{
"name": "Criminal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"reference\": \"myRef123\",\n \"subjectInfo\": {\n \"last\": \"Consumer\",\n \"first\": \"Jonathan\",\n \"middle\": \"\",\n \"dob\": \"01-01-1982\",\n \"ssn\": \"666-44-3321\",\n \"houseNumber\": \"1803\",\n \"streetName\": \"Norma\",\n \"city\": \"Cottonwood\",\n \"state\": \"CA\",\n \"zip\": \"91502\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/criminal/new-request",
"host": [
"{{url}}"
],
"path": [
"criminal",
"new-request"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "nginx/1.18.0 (Ubuntu)"
},
{
"key": "Date",
"value": "Thu, 20 Jan 2022 15:50:33 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Vary",
"value": "Access-Control-Request-Method"
},
{
"key": "Vary",
"value": "Access-Control-Request-Headers"
},
{
"key": "RequestID",
"value": "8e14444e-4a47-43e4-828b-0423b1a8bfcd"
},
{
"key": "Cache-Control",
"value": "no-cache, no-store, max-age=0, must-revalidate"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Expires",
"value": "0"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
}
],
"cookie": [],
"body": "{\n \"orderResponse\": {\n \"message\": \"Request Results\",\n \"responseID\": \"60\",\n \"name\": \"Consumer,Jonathan\"\n },\n \"cicCriminal\": {\n \"candidates\": {\n \"candidate\": [\n {\n \"offenses\": {\n \"count\": \"1\",\n \"offense\": [\n {\n \"description\": \"SEXUAL ASSAULT OF A CHILD\",\n \"statute\": \"948.02(1)\",\n \"convictionDate\": \"11/27/1990\",\n \"convictionLocation\": \"ROCK, WI\"\n }\n ]\n },\n \"subject\": {\n \"category\": \"SEX OFFENDER\",\n \"address\": \"123 CONSUMER RD, ca 95555\",\n \"comments\": \"PHOTO DATE: 12/20/2010; CUSTODY/SUPERVISION: TERMINATED; REGISTRATION END DATE: LIFE REGISTRATION; COMPLIANCE STATUS: COMPLIANT; PROGRAM INFORMATION: DOC SORP ADMINISTRATION 3099 E WASHINGTON AVENUE MADISON WI 53704 (608)240-5830;ID NUMBERS: DEPARTMENT OF CORRECTIONS NUMBER:00223018; OFFENDER REGISTER DATE: 19901127\",\n \"image\": \"https://www.securecontinfo.com/user/images/sampleoffender.jpg\",\n \"sex\": \"MALE\",\n \"hairColor\": \"BROWN\",\n \"source\": \"WI SEX OFFENDER REGISTRY\",\n \"weight\": \"199 LBS\",\n \"eyeColor\": \"BROWN\",\n \"age\": \"64\",\n \"alias\": \"GREGORY CONSUMER\",\n \"dob\": \"19510000\",\n \"state\": \"CA\",\n \"fullName\": \"JONATHAN CONSUMER\",\n \"race\": \"BROWN\",\n \"caseNumber\": \"123456789\",\n \"height\": \"5 FEET 10 INCHES\"\n }\n },\n {\n \"offenses\": {\n \"count\": \"3\",\n \"offense\": [\n {\n \"description\": \"ROBB. GUN/DEADLY WPN(CONSPIRACY TO COMMIT)\",\n \"disposition\": \"NOT PROVIDED BY SOURCE\",\n \"dispositionDate\": \"02-17-2012\",\n \"offenseDate\": \"07-26-2010\",\n \"commitmentDate\": \"03-12-2012\",\n \"releaseDate\": \"07-26-2023\"\n },\n {\n \"description\": \"2ND DEG.MURD,DANGEROUS ACT\",\n \"disposition\": \"NOT PROVIDED BY SOURCE\",\n \"dispositionDate\": \"02-17-2012\",\n \"offenseDate\": \"07-26-2010\",\n \"commitmentDate\": \"03-12-2012\",\n \"releaseDate\": \"07-26-2023\"\n },\n {\n \"description\": \"ROBB. GUN/DEADLY WPN\",\n \"disposition\": \"NOT PROVIDED BY SOURCE\",\n \"dispositionDate\": \"02-17-2012\",\n \"offenseDate\": \"07-26-2010\",\n \"commitmentDate\": \"03-12-2012\",\n \"releaseDate\": \"07-26-2023\"\n }\n ]\n },\n \"subject\": {\n \"category\": \"CRIMINAL\",\n \"comments\": \"SENTENCE LENGTH: 13Y 0M 0D\",\n \"sex\": \"MALE\",\n \"hairColor\": \"BLACK\",\n \"source\": \"FL DEPT OF CORRECTIONS- INMATE\",\n \"weight\": \"240 LBS\",\n \"eyeColor\": \"BROWN\",\n \"age\": \"64\",\n \"scarsMarks\": \"GLASSES\",\n \"alias\": \"JONATHAN CONSUMER,JONATHAN QUINCY CONSUMER,JOSEPH QUINCY CONSUMER\",\n \"dob\": \"12/04/1951\",\n \"state\": \"FL\",\n \"fullName\": \"JONATHAN CONSUMER\",\n \"race\": \"BLACK\",\n \"caseNumber\": \"1550682\",\n \"height\": \"5 FEET 10 INCHES\"\n }\n }\n ],\n \"count\": \"2\"\n }\n }\n}"
}
]
},
{
"name": "Criminal Fetch",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{url}}/criminal/get-response/{{criminalResponseID}}",
"host": [
"{{url}}"
],
"path": [
"criminal",
"get-response",
"{{criminalResponseID}}"
]
}
},
"response": []
}
]
},
{
"name": "Eviction",
"item": [
{
"name": "Eviction Request",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) {",
" pm.collectionVariables.set(\"evictionResponseID\",data.orderResponse.responseID);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"reference\": \"myRef123\",\n \"subjectInfo\": {\n \"last\": \"Consumer\",\n \"first\": \"Jonathan\",\n \"middle\": \"\",\n \"dob\": \"01-01-1982\",\n \"ssn\": \"666-44-3321\",\n \"houseNumber\": \"1803\",\n \"streetName\": \"Norma\",\n \"city\": \"Cottonwood\",\n \"state\": \"CA\",\n \"zip\": \"91502\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/eviction/new-request",
"host": [
"{{url}}"
],
"path": [
"eviction",
"new-request"
]
}
},
"response": []
},
{
"name": "Eviction Fetch",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{url}}/eviction/get-response/{{evictionResponseID}}",
"host": [
"{{url}}"
],
"path": [
"eviction",
"get-response",
"{{evictionResponseID}}"
]
}
},
"response": []
}
]
},
{
"name": "Liens and Judgements",
"item": [
{
"name": "[Step 1] Liens and Judgements Search",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var reqData = JSON.parse(request.data);",
"console.log(reqData);",
"if(reqData) {",
" pm.collectionVariables.set(\"liensAndJudgementsUniqueId\",reqData.searchBy.uniqueId);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"user\": {\n \"dlpurpose\": \"0\",\n \"glbpurpose\": \"0\"\n },\n \"searchBy\": {\n \"uniqueId\": \"888809001188\",\n \"name\": {\n \"qualifier\": \"ALSO_KNOWN_AS\",\n \"searchIndicator\": 0,\n \"person\": {\n \"unparsed\": \"LANE BAIRD Z\"\n },\n \"source\": \"INPUT\"\n },\n \"address\": {\n \"line1\": \"235 CHESTNUT ST\",\n \"line2\": \"string\",\n \"city\": \"BRISTOL\",\n \"state\": \"RI\",\n \"zipCode\": \"2809\"\n },\n \"ssn\": \"35111044\",\n \"includeEvictions\": true,\n \"includeLiens\": true,\n \"includeJudgments\": true\n },\n \"options\": {\n \"returnCount\": 10,\n \"startingRecord\": 1,\n \"includeAlsoFound\": true\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ljs",
"host": [
"{{url}}"
],
"path": [
"ljs"
]
}
},
"response": []
},
{
"name": "[Step 2] Liens and Judgements Report",
"event": [
{
"listen": "test",
"script": {
"exec": [
"//console.log(pm.response.text());",
""
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"reportBy\": {\n \"uniqueId\": \"888809001188\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ljr",
"host": [
"{{url}}"
],
"path": [
"ljr"
]
}
},
"response": []
}
]
},
{
"name": "Instant ID",
"item": [
{
"name": "Consumer Instant ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) { }"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"Persons\": [\n {\n \"Name\": {\n \"FirstName\": \"Alexia\",\n \"LastName\": \"Brown\"\n },\n \"Addresses\": [\n {\n \"StreetAddress1\": \"140 MAIN ST\",\n \"City\": \"JACKSONVILLE\",\n \"State\": \"FL\",\n \"Zip5\": \"32208\",\n \"Country\": \"US\",\n \"Context\": \"primary\"\n }\n ],\n \"SSN\": {\n \"Number\": \"524612316\",\n \"Type\": \"ssn9\"\n },\n \"DateOfBirth\": {\n \"Year\": \"1966\",\n \"Month\": \"9\",\n \"Day\": \"5\"\n },\n \"Phones\": [\n {\n \"Number\": \"6026143790\",\n \"Context\": \"mobile\"\n }\n ],\n \"Context\": \"primary\"\n }\n ],\n \"Settings\": {\n \"GLBA\": 0,\n \"DPPA\": 0\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/iid/new-request",
"host": [
"{{url}}"
],
"path": [
"iid",
"new-request"
]
}
},
"response": []
},
{
"name": "Business Instant ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) { }"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"Persons\": [\n {\n \"Name\": {\n \"FirstName\": \"AAS\",\n \"LastName\": \"MUNDY\"\n },\n \"Addresses\": [\n {\n \"Zip5\": \"97062\",\n \"Country\": \"US\",\n \"Context\": \"primary\"\n }\n ],\n \"SSN\": {\n \"Number\": \"000000000\",\n \"Type\": \"ssn9\"\n },\n \"Context\": \"primary\"\n }\n ],\n \"Businesses\": [\n {\n \"CompanyName\": \"MARTYS MEATS\",\n \"Fein\": \"991111244\",\n \"Addresses\": [\n {\n \"StreetAddress1\": \"1712 BIG MOUNTAIN DR\",\n \"City\": \"BIRMINGHAM\",\n \"State\": \"AL\",\n \"Zip5\": \"35235\",\n \"Country\": \"US\",\n \"Context\": \"primary\"\n }\n ],\n \"Phones\": [\n {\n \"Number\": \"9511111241\",\n \"Context\": \"business\"\n }\n ]\n }\n ],\n \"Settings\": {\n \"DPPA\": 0,\n \"GLBA\": 0\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/biid/new-request",
"host": [
"{{url}}"
],
"path": [
"biid",
"new-request"
]
}
},
"response": []
},
{
"name": "Business Instant ID VFPS",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"console.log(data);",
"if(data) { }"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"searchBy\": {\n \"company\": {\n \"companyName\": \"SMB TWENTYCHARAT INC\",\n \"address\": {\n \"streetAddress1\": \"157 5TH ST # 90\",\n \"city\": \"SAN FRANCISCO\",\n \"state\": \"CA\",\n \"zip5\": \"94103\"\n },\n \"phone\": \"4153962921\",\n \"fein\": \"473688758\"\n },\n \"authorizedRep1\": {\n \"sequence\": \"true\",\n \"name\": {\n \"first\": \"SMBUSDP\",\n \"last\": \"ONLINESALES\"\n },\n \"address\": {\n \"streetAddress1\": \"157 5TH STP AT876\",\n \"city\": \"SAN FRANCISCO\",\n \"state\": \"CA\",\n \"zip5\": \"94103\"\n },\n \"phone\": \"4156648888\",\n \"ssn\": \"473688757\",\n \"driverLicenseNumber\": \"A65874587\",\n \"dob\": {\n \"year\": 1970,\n \"month\": 6,\n \"day\": 14\n }\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/vfps/biid2",
"host": [
"{{url}}"
],
"path": [
"vfps",
"biid2"
]
}
},
"response": []
},
{
"name": "Business Instant ID VFPS (Only PDF)",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"searchBy\": {\n \"company\": {\n \"companyName\": \"SMB TWENTYCHARAT INC\",\n \"address\": {\n \"streetAddress1\": \"157 5TH ST # 90\",\n \"city\": \"SAN FRANCISCO\",\n \"state\": \"CA\",\n \"zip5\": \"94103\"\n },\n \"phone\": \"4153962921\",\n \"fein\": \"473688758\"\n },\n \"authorizedRep1\": {\n \"sequence\": \"true\",\n \"name\": {\n \"first\": \"SMBUSDP\",\n \"last\": \"ONLINESALES\"\n },\n \"address\": {\n \"streetAddress1\": \"157 5TH STP AT876\",\n \"city\": \"SAN FRANCISCO\",\n \"state\": \"CA\",\n \"zip5\": \"94103\"\n },\n \"phone\": \"4156648888\",\n \"ssn\": \"473688757\",\n \"driverLicenseNumber\": \"A65874587\",\n \"dob\": {\n \"year\": 1970,\n \"month\": 6,\n \"day\": 14\n }\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/vfps/biid2/pdf",
"host": [
"{{url}}"
],
"path": [
"vfps",
"biid2",
"pdf"
]
}
},
"response": []
}
]
},
{
"name": "Precise ID",
"item": [
{
"name": "(Optional) For pre-populating address for user",
"item": [
{
"name": "Reverse Phone Append (RPA) (*Live do not use - instead refer to example run on myself)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = xml2Json(pm.response.text());",
"console.log(data);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/xml",
"disabled": true
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"9192742894\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": ""
}
},
"response": [
{
"name": "Live - Reverse Phone Append (RPA)",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/xml",
"disabled": true
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"number\": \"9192742486\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/rpa",
"host": [
"{{url}}"
],
"path": [
"experian",
"rpa"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "nginx/1.18.0 (Ubuntu)"
},
{
"key": "Date",
"value": "Thu, 10 Feb 2022 20:23:07 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Vary",
"value": "Access-Control-Request-Method"
},
{
"key": "Vary",
"value": "Access-Control-Request-Headers"
},
{
"key": "RequestID",
"value": "efc51c6b-f517-48f5-acb8-c3db82049537"
},
{
"key": "Cache-Control",
"value": "no-cache, no-store, max-age=0, must-revalidate"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Expires",
"value": "0"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
}
],
"cookie": [],
"body": "{\n \"result\": {\n \"number\": \"9192742486\",\n \"confidence\": \"Verified\",\n \"first_name\": \"Kevin\",\n \"middle_name\": \"ROSSMAN\",\n \"last_name\": \"SMITH\",\n \"address\": {\n \"address_line1\": \"1424 HOLT RD\",\n \"address_line2\": \"\",\n \"city\": \"CARY\",\n \"state\": \"NC\",\n \"zip5\": \"27519\",\n \"zip4\": \"5891\",\n \"confidence\": \"Verified\"\n }\n },\n \"metadata\": {\n \"phone_detail\": {\n \"input_phone_type\": \"Mobile\"\n }\n }\n}"
}
]
}
]
},
{
"name": "Account Opening Flows",
"item": [
{
"name": "Precise ID Score (standalone)",
"item": [
{
"name": "Precise ID Score",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"try {",
" let sessionId = data.clientResponsePayload.decisionElements[0].otherData.json.fraudSolutions.response.products.preciseIDServer.sessionID;",
" pm.collectionVariables.set(\"_sessionID\",sessionId);",
" console.log(\"SessionID:\", sessionId);",
"} catch(error) {",
" console.log(\"Failed to get SessionID:\",error);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"firstName\": \"CARMELLA\",\n \"lastName\": \"DUSSETT\",\n \"middleName\": \"R\",\n \"nameSuffix\": \"\",\n \"dob\": \"1952-10-30\",\n \"street1\": \"2824 COX MILL RD\",\n \"street2\": \"\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zip\": \"273307727\",\n \"pobox\": \"\",\n \"phone\": \"3369244513\",\n \"email\": \"\",\n \"ssn\": \"666504240\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/initial",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"initial"
]
},
"description": "Minimum:\n\n* name\n* email\n \n\nIf OTP is determined to be possible based on the provided info, then the user will be taken through the OTP flow. Otherwise,"
},
"response": []
}
]
},
{
"name": "Precise ID Score + Knowledge IQ (KIQ)",
"item": [
{
"name": "[Step 1] Precise ID Score (acct opening)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"try {",
" let sessionId = data.clientResponsePayload.decisionElements[0].otherData.json.fraudSolutions.response.products.preciseIDServer.sessionID;",
" pm.collectionVariables.set(\"_sessionID\",sessionId);",
" console.log(\"SessionID:\", sessionId);",
"} catch(error) {",
" console.log(\"Failed to get SessionID:\",error);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"firstName\": \"CARMELLA\",\n \"lastName\": \"DUSSETT\",\n \"middleName\": \"R\",\n \"nameSuffix\": \"\",\n \"dob\": \"1952-10-30\",\n \"street1\": \"2824 COX MILL RD\",\n \"street2\": \"\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zip\": \"273307727\",\n \"pobox\": \"\",\n \"phone\": \"3369244513\",\n \"email\": \"\",\n \"ssn\": \"666504240\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/initial",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"initial"
]
},
"description": "Minimum:\n\n* name\n* email\n \n\nIf OTP is determined to be possible based on the provided info, then the user will be taken through the OTP flow. Otherwise,"
},
"response": [
{
"name": "Precise ID Score (acct opening",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"firstName\": \"CARMELLA\",\n \"lastName\": \"DUSSETT\",\n \"middleName\": \"R\",\n \"nameSuffix\": \"\",\n \"dob\": \"1952-10-30\",\n \"street1\": \"2824 COX MILL RD\",\n \"street2\": \"\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zip\": \"273307727\",\n \"pobox\": \"\",\n \"phone\": \"3369244513\",\n \"email\": \"\",\n \"ssn\": \"666504240\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/initial",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"initial"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "nginx/1.18.0 (Ubuntu)"
},
{
"key": "Date",
"value": "Tue, 14 Dec 2021 01:46:17 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Vary",
"value": "Access-Control-Request-Method"
},
{
"key": "Vary",
"value": "Access-Control-Request-Headers"
},
{
"key": "RequestID",
"value": "d70d64bf-3ee5-4f8a-af2d-3bf95f41b1d0"
},
{
"key": "Cache-Control",
"value": "no-cache, no-store, max-age=0, must-revalidate"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Expires",
"value": "0"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
}
],
"cookie": [],
"body": "{\n \"originalRequestData\": {\n \"contacts\": [\n {\n \"id\": \"APPLICANT_CONTACT_ID_1\",\n \"person\": {\n \"personDetails\": {\n \"dateOfBirth\": \"1952-10-30\"\n },\n \"names\": [\n {\n \"firstName\": \"CARMELLA\",\n \"middleNames\": \"R\",\n \"surName\": \"DUSSETT\",\n \"nameSuffix\": \"\"\n }\n ]\n },\n \"addresses\": [\n {\n \"id\": \"MAIN_CONTACT_ADDRESS_1\",\n \"addressType\": \"CURRENT\",\n \"poBoxNumber\": \"\",\n \"street\": \"2824 COX MILL RD\",\n \"street2\": \"\",\n \"postTown\": \"SANFORD\",\n \"postal\": \"273307727\",\n \"stateProvinceCode\": \"NC\"\n }\n ],\n \"telephones\": [\n {\n \"id\": \"MAIN_PHONE_1\",\n \"number\": \"3369244513\"\n }\n ],\n \"emails\": [\n {\n \"id\": \"MAIN_EMAIL_1\",\n \"email\": \"\"\n }\n ],\n \"identityDocuments\": [\n {\n \"documentNumber\": \"666504240\",\n \"documentType\": \"SSN\"\n }\n ]\n }\n ],\n \"application\": {\n \"productDetails\": {\n \"productType\": \"WRITTEN_INSTRUCTIONS\"\n },\n \"applicants\": [\n {\n \"contactId\": \"APPLICANT_CONTACT_ID_1\",\n \"applicantType\": \"APPLICANT\"\n }\n ]\n }\n },\n \"responseHeader\": {\n \"tenantID\": \"1b8ae9fcc7304ce8ba0b363febdab7\",\n \"requestType\": \"PreciseIdOnly\",\n \"clientReferenceId\": \"ee780991-4106-4c19-b189-4bce93f9d00a\",\n \"expRequestId\": \"RB000000037239\",\n \"messageTime\": \"2021-12-14T01:46:14Z\",\n \"overallResponse\": {\n \"decision\": \"REFER\",\n \"decisionText\": \"Continue & Investigate\",\n \"decisionReasons\": [\n \"Continue & Investigate\"\n ],\n \"recommendedNextActions\": [],\n \"spareObjects\": []\n },\n \"responseCode\": \"R0201\",\n \"responseType\": \"INFO\",\n \"responseMessage\": \"Workflow Complete.\"\n },\n \"clientResponsePayload\": {\n \"orchestrationDecisions\": [\n {\n \"sequenceId\": \"1\",\n \"decisionSource\": \"PreciseId\",\n \"decision\": \"REFER\",\n \"decisionReasons\": [\n \"Continue & Investigate\"\n ],\n \"score\": 702,\n \"decisionText\": \"Continue & Investigate\",\n \"nextAction\": \"Continue\",\n \"appReference\": \"2188921893\",\n \"decisionTime\": \"2021-12-14T01:46:16Z\"\n }\n ],\n \"decisionElements\": [\n {\n \"applicantId\": \"APPLICANT_CONTACT_ID_1\",\n \"serviceName\": \"PreciseId\",\n \"decision\": \"R10\",\n \"score\": 702,\n \"decisionText\": \"Refer\",\n \"appReference\": \"2188921893\",\n \"decisions\": [\n {\n \"element\": \"messageNumber\",\n \"value\": \"57\",\n \"reason\": \"015000 0100\"\n },\n {\n \"element\": \"initialDecision\",\n \"value\": \"R10\",\n \"reason\": \"\"\n },\n {\n \"element\": \"finalDecision\",\n \"value\": \"R10\",\n \"reason\": \"\"\n },\n {\n \"element\": \"kbaResultCode\",\n \"value\": \"0\",\n \"reason\": \"KBA processing successful questions returned\"\n },\n {\n \"element\": \"pidScoreReason1\",\n \"value\": \"B220\",\n \"reason\": \"High revolving balance to limit ratio or low available credit on bankcard trades, or low average balance on open trades\"\n },\n {\n \"element\": \"pidScoreReason2\",\n \"value\": \"B105\",\n \"reason\": \"High credit limits and balances on revolving trades\"\n },\n {\n \"element\": \"pidScoreReason3\",\n \"value\": \"B110\",\n \"reason\": \"Lack of public record information or collection trades indicative that file is susceptible to ID fraud\"\n },\n {\n \"element\": \"pidScoreReason4\",\n \"value\": \"B111\",\n \"reason\": \"Lack of delinquency or derogs on installment and real property trades in the last 24 months indicative that file is susceptible to ID fraud\"\n },\n {\n \"element\": \"pidScoreReason5\",\n \"value\": \"B405\",\n \"reason\": \"No adverse factor observed\"\n }\n ],\n \"rules\": [\n {\n \"ruleName\": \"glbRule01\",\n \"ruleId\": \"3401\",\n \"ruleText\": \"Additional Addresses (0 - 1)\"\n },\n {\n \"ruleName\": \"glbRule02\",\n \"ruleId\": \"1018\",\n \"ruleText\": \"SSN specified on inquiry has been reported more frequently for another\"\n },\n {\n \"ruleName\": \"glbRule03\",\n \"ruleId\": \"3201\",\n \"ruleText\": \"Incoming Application Omits Best Address on File\"\n }\n ],\n \"matches\": [\n {\n \"name\": \"pmAddressVerificationResult1\",\n \"value\": \"A1\"\n },\n {\n \"name\": \"pmPhoneVerificationResult1\",\n \"value\": \"EA\"\n },\n {\n \"name\": \"pmConsumerIDVerificationResult\",\n \"value\": \"EA\"\n },\n {\n \"name\": \"pmDateOfBirthMatchResult\",\n \"value\": \"9\"\n },\n {\n \"name\": \"pmDriverLicenseVerificationResult\",\n \"value\": \"NA\"\n },\n {\n \"name\": \"pmChangeOfAddressVerificationResult1\",\n \"value\": \"N\"\n },\n {\n \"name\": \"pmOFACVerificationResult\",\n \"value\": \"1\"\n },\n {\n \"name\": \"fcraFSIndicator07\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator08\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator09\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator19\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator20\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator22\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator27\",\n \"value\": \"Y\"\n },\n {\n \"name\": \"glbFSIndicator01\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator02\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator03\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator04\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator05\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator06\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator10\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator11\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator13\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator14\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator15\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator16\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator17\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator18\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator21\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator25\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator26\",\n \"value\": \"N\"\n }\n ],\n \"scores\": [\n {\n \"name\": \"preciseIDScore\",\n \"type\": \"score\",\n \"score\": 702\n },\n {\n \"name\": \"validationScore\",\n \"type\": \"score\",\n \"score\": 749\n },\n {\n \"name\": \"verificationScore\",\n \"type\": \"score\",\n \"score\": 810\n },\n {\n \"name\": \"fpdScore\",\n \"type\": \"score\",\n \"score\": 541\n },\n {\n \"name\": \"preciseMatchScore\",\n \"type\": \"score\",\n \"score\": 695\n }\n ],\n \"otherData\": {\n \"json\": {\n \"fraudSolutions\": {\n \"response\": {\n \"products\": {\n \"preciseIDServer\": {\n \"pidxmlversion\": \"06.00\",\n \"sessionID\": \"XW4VKT79PAVD9N4K924SXNE1.pidd1v-211213194616699780210\",\n \"header\": {\n \"reportDate\": \"12132021\",\n \"reportTime\": \"194616\",\n \"productOption\": \"11\",\n \"subcode\": \"2928537\",\n \"referenceNumber\": \"ee780991-4106-4c19-b189-4bce93f9d00a\"\n },\n \"messages\": {\n \"message\": [\n {\n \"number\": \"57\",\n \"text\": \"015000 0100\",\n \"addrMismatch\": \"N\"\n }\n ],\n \"consumerStatement\": []\n },\n \"summary\": {\n \"transactionID\": \"2188921893\",\n \"initialDecision\": \"R10\",\n \"finalDecision\": \"R10\",\n \"scores\": {\n \"preciseIDScore\": \"702\",\n \"preciseIDScorecard\": \"AC OPEN V2\",\n \"validationScore\": \"000749\",\n \"validationScorecard\": \"AC OPEN VAL V2\",\n \"verificationScore\": \"000810\",\n \"verificationScorecard\": \"AC OPEN ID THEFT V2\",\n \"complianceDescription\": \"No Compliance Code\",\n \"fpdscore\": \"000541\",\n \"fpdscorecard\": \"AC OPEN FPD V2\",\n \"reasons\": {\n \"reason\": [\n {\n \"value\": \"High revolving balance to limit ratio or low available credit on bankcard trades, or low average balance on open trades\",\n \"code\": \"B220\"\n },\n {\n \"value\": \"High credit limits and balances on revolving trades\",\n \"code\": \"B105\"\n },\n {\n \"value\": \"Lack of public record information or collection trades indicative that file is susceptible to ID fraud\",\n \"code\": \"B110\"\n },\n {\n \"value\": \"Lack of delinquency or derogs on installment and real property trades in the last 24 months indicative that file is susceptible to ID fraud\",\n \"code\": \"B111\"\n },\n {\n \"value\": \"No adverse factor observed\",\n \"code\": \"B405\"\n }\n ]\n }\n }\n },\n \"preciseMatch\": {\n \"version\": \"04.00\",\n \"responseStatusCode\": {\n \"value\": \"Data found for search request\",\n \"code\": \"00\"\n },\n \"preciseMatchTransactionID\": \"CP-CVDN-CJ3ZVMSU3\",\n \"preciseMatchScore\": \"695\",\n \"preciseMatchDecision\": {\n \"value\": \"\",\n \"code\": \" \"\n },\n \"addresses\": {\n \"address\": [\n {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Exact match on first and last name;Exact match on address\",\n \"code\": \"A1\"\n },\n \"type\": {\n \"value\": \"Single family dwelling\",\n \"code\": \"S \"\n },\n \"unitMismatchResult\": {\n \"value\": \"\",\n \"code\": \" \"\n },\n \"highRiskResult\": {\n \"value\": \"No address high risk information found\",\n \"code\": \"N \"\n },\n \"counts\": {\n \"standardizedAddressReturnCount\": 1,\n \"residentialAddressMatchCount\": 2,\n \"residentialAddressReturnCount\": 2,\n \"highRiskAddressReturnCount\": 0,\n \"businessAddressMatchCount\": 0,\n \"businessAddressReturnCount\": 0\n }\n },\n \"detail\": {\n \"standardizedAddressRcd\": {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27332\"\n },\n \"residentialAddressRcd\": [\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"zipPlus4\": \"7727\",\n \"areaCode\": \"323\",\n \"phone\": \"6862545\"\n },\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"areaCode\": \"336\",\n \"phone\": \"9244513\"\n }\n ],\n \"highRiskAddressRcd\": [],\n \"highRiskAddressDescription\": [\n {\n \"highRiskDescription\": \"No high risk business at address/phone\"\n }\n ],\n \"businessAddressRcd\": []\n }\n }\n ]\n },\n \"phones\": {\n \"phone\": [\n {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Exact match to Phone, Exact Match to Name, Exact match to Address\",\n \"code\": \"EA\"\n },\n \"classification\": {\n \"value\": \"Phone matches Landline used for Residential\",\n \"code\": \"LR\"\n },\n \"highRiskResult\": {\n \"value\": \"No phone high risk information found\",\n \"code\": \"N\"\n },\n \"counts\": {\n \"residentialPhoneMatchCount\": 1,\n \"residentialPhoneReturnCount\": 1,\n \"highRiskPhoneReturnCount\": 0,\n \"businessPhoneMatchCount\": 0,\n \"businessPhoneReturnCount\": 0\n }\n },\n \"detail\": {\n \"residentialPhoneRcd\": [\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"areaCode\": \"336\",\n \"phone\": \"9244513\"\n }\n ],\n \"phoneHighRiskRcd\": [],\n \"highRiskPhoneDescription\": [\n {\n \"highRiskDescription\": \"No high risk business at address/phone\"\n }\n ],\n \"businessPhoneRcd\": []\n }\n }\n ]\n },\n \"consumerID\": {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Exact SSN match, Exact Name match, Exact Address match\",\n \"code\": \"EA\"\n },\n \"deceasedResult\": {\n \"value\": \"No\",\n \"code\": \"N\"\n },\n \"formatResult\": {\n \"value\": \"Valid\",\n \"code\": \"V\"\n },\n \"issueResult\": {\n \"value\": \"SSN issued\",\n \"code\": \"I\"\n },\n \"issueState\": \"TX\",\n \"issueStartRange\": \"1972\",\n \"issueEndRange\": \"1975\",\n \"counts\": {\n \"consumerIDReturnCount\": 1\n }\n },\n \"detail\": {\n \"consumerIDRcd\": [\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"zipPlus4\": \"7727\",\n \"areaCode\": \"323\",\n \"phone\": \"6862545\"\n }\n ]\n }\n },\n \"dateOfBirth\": {\n \"summary\": {\n \"matchResult\": {\n \"value\": \"Day of Birth and Month of Birth exact match, Year of Birth exact match (no plus or minus one year logic accommodation)\",\n \"code\": \"9\"\n },\n \"monthOfBirth\": \"10\",\n \"dayOfBirth\": \"30\",\n \"yearOfBirth\": \"1952\"\n }\n },\n \"driverLicense\": {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Data not available\",\n \"code\": \"NA\"\n },\n \"formatValidation\": {\n \"value\": \"Driver's license not provided or validated\",\n \"code\": \" \"\n }\n }\n },\n \"changeOfAddresses\": {\n \"changeOfAddress\": [\n {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"No change of address information found\",\n \"code\": \"N \"\n },\n \"counts\": {\n \"changeOfAddressReturnCount\": 0\n }\n }\n }\n ]\n },\n \"ofac\": {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"No match\",\n \"code\": \"1 \"\n },\n \"counts\": {\n \"ofacReturnCount\": 0\n }\n }\n },\n \"previousAddresses\": {\n \"previousAddress\": [\n {\n \"summary\": {\n \"counts\": {\n \"previousAddressReturnCount\": 2\n }\n },\n \"detail\": {\n \"previousAddressRcd\": [\n {\n \"address\": \"503 COURT ST N\",\n \"city\": \"TALLADEGA\",\n \"state\": \"AL\",\n \"zipCode\": \"35160\",\n \"zipPlus4\": \"2021\",\n \"reportedDate\": \"20060527\",\n \"lastUpdatedDate\": \"20060623\"\n },\n {\n \"address\": \"1122 FISHER FERRY ST APT LT12\",\n \"city\": \"THOMASVILLE\",\n \"state\": \"NC\",\n \"zipCode\": \"27360\",\n \"zipPlus4\": \"6004\",\n \"reportedDate\": \"20060412\",\n \"lastUpdatedDate\": \"20060412\"\n }\n ]\n }\n }\n ]\n },\n \"ssnfinder\": {\n \"summary\": {\n \"counts\": {\n \"ssnfinderReturnCount\": 0\n }\n }\n }\n },\n \"kba\": {\n \"general\": {\n \"sessionID\": \"XW4VKT79PAVD9N4K924SXNE1.pidd1v-211213194616699780210\",\n \"numberOfQuestions\": 4,\n \"kbaresultCode\": 0,\n \"kbaresultCodeDescription\": \"KBA processing successful questions returned\"\n },\n \"questionSet\": [\n {\n \"questionType\": \"23\",\n \"questionText\": \"Which of the following is a current or previous employer? If there is not a matched employer name, please select 'NONE OF THE ABOVE'.\",\n \"questionSelect\": {\n \"questionChoice\": [\n \"LUCERO DESIGNS\",\n \"DELL COMPUTER\",\n \"HUSD\",\n \"CELLULAR ONE\",\n \"NONE OF THE ABOVE/DOES NOT APPLY\"\n ]\n }\n },\n {\n \"questionType\": \"30\",\n \"questionText\": \"Which of the following is a license plate number that is associated with an automobile registered in your name? If there is not a matched license plate, please select 'NONE OF THE ABOVE'.\",\n \"questionSelect\": {\n \"questionChoice\": [\n \"FBT485\",\n \"TBWRAY\",\n \"23AFFBC4567\",\n \"RNE001\",\n \"NONE OF THE ABOVE/DOES NOT APPLY\"\n ]\n }\n },\n {\n \"questionType\": \"27\",\n \"questionText\": \"According to our records, you currently own/lease, or have owned/leased within the past year, one of the following vehicles. Please select the vehicle that you purchased or leased prior to March 2013 from the following choices.\",\n \"questionSelect\": {\n \"questionChoice\": [\n \"PONTIAC GRAND AM\",\n \"SUBARU LEGACY\",\n \"BMW 3 SERIES\",\n \"PLYMOUTH NEON\",\n \"NONE OF THE ABOVE/DOES NOT APPLY\"\n ]\n }\n },\n {\n \"questionType\": \"38\",\n \"questionText\": \"Which of the following institutions do you have a bank account with? If there is not a matched bank name, please select 'NONE OF THE ABOVE'.\",\n \"questionSelect\": {\n \"questionChoice\": [\n \"PROVIDIAN FINANCIAL\",\n \"SYNOVUS FINANCIAL CORP\",\n \"AMERISURE BANK\",\n \"NORTHERN COMMUNITY BANK\",\n \"NONE OF THE ABOVE/DOES NOT APPLY\"\n ]\n }\n }\n ],\n \"creditQuestionSet\": [],\n \"nonCreditQuestionSet\": []\n },\n \"fcraDetail\": {\n \"fraudShield\": {\n \"indicator\": [\n {\n \"value\": \"N\",\n \"code\": \"07\"\n },\n {\n \"value\": \"N\",\n \"code\": \"08\"\n },\n {\n \"value\": \"N\",\n \"code\": \"09\"\n },\n {\n \"value\": \"N\",\n \"code\": \"19\"\n },\n {\n \"value\": \"N\",\n \"code\": \"20\"\n },\n {\n \"value\": \"N\",\n \"code\": \"22\"\n },\n {\n \"value\": \"Y\",\n \"code\": \"27\"\n }\n ]\n },\n \"fcrarules\": {\n \"fcrarule\": [\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n }\n ]\n },\n \"adverseActions\": {\n \"adverseAction\": [\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n }\n ]\n }\n },\n \"glbDetail\": {\n \"fraudShield\": {\n \"indicator\": [\n {\n \"value\": \"N\",\n \"code\": \"01\"\n },\n {\n \"value\": \"N\",\n \"code\": \"02\"\n },\n {\n \"value\": \"N\",\n \"code\": \"03\"\n },\n {\n \"value\": \"N\",\n \"code\": \"04\"\n },\n {\n \"value\": \"N\",\n \"code\": \"05\"\n },\n {\n \"value\": \"N\",\n \"code\": \"06\"\n },\n {\n \"value\": \"N\",\n \"code\": \"10\"\n },\n {\n \"value\": \"N\",\n \"code\": \"11\"\n },\n {\n \"value\": \"N\",\n \"code\": \"13\"\n },\n {\n \"value\": \"N\",\n \"code\": \"14\"\n },\n {\n \"value\": \"N\",\n \"code\": \"15\"\n },\n {\n \"value\": \"N\",\n \"code\": \"16\"\n },\n {\n \"value\": \"N\",\n \"code\": \"17\"\n },\n {\n \"value\": \"N\",\n \"code\": \"18\"\n },\n {\n \"value\": \"N\",\n \"code\": \"21\"\n },\n {\n \"value\": \"N\",\n \"code\": \"25\"\n },\n {\n \"value\": \"N\",\n \"code\": \"26\"\n }\n ]\n },\n \"glbRules\": {\n \"glbRule\": [\n {\n \"value\": \"Additional Addresses (0 - 1)\",\n \"code\": \"3401\"\n },\n {\n \"value\": \"SSN specified on inquiry has been reported more frequently for another\",\n \"code\": \"1018\"\n },\n {\n \"value\": \"Incoming Application Omits Best Address on File\",\n \"code\": \"3201\"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n }\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n }\n ]\n }\n}"
}
]
},
{
"name": "[Step 2] Submit KBA answers (for a chance to improve PreciseID Score)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"riskStrategyNumber\": \"\",\n \"languageCode\": \"\",\n \"championChallengerRandomNumber\": \"\",\n \"outWalletQuestionsRequest\": \"4\",\n \"sessionId\": \"{{_sessionID}}\",\n \"answers\": {\n \"outWalletAnswer1\": \"1\",\n \"outWalletAnswer2\": \"3\",\n \"outWalletAnswer3\": \"3\",\n \"outWalletAnswer4\": \"5\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/kiq",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"kiq"
]
}
},
"response": [
{
"name": "Final KIQ",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"riskStrategyNumber\": \"\",\n \"languageCode\": \"\",\n \"championChallengerRandomNumber\": \"\",\n \"outWalletQuestionsRequest\": \"4\",\n \"sessionId\": \"{{_sessionID}}\",\n \"answers\": {\n \"outWalletAnswer1\": \"1\",\n \"outWalletAnswer2\": \"3\",\n \"outWalletAnswer3\": \"3\",\n \"outWalletAnswer4\": \"5\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/kiq",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"kiq"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "nginx/1.18.0 (Ubuntu)"
},
{
"key": "Date",
"value": "Tue, 14 Dec 2021 01:48:43 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Vary",
"value": "Access-Control-Request-Method"
},
{
"key": "Vary",
"value": "Access-Control-Request-Headers"
},
{
"key": "RequestID",
"value": "12d72e74-7242-41bb-9548-2ee297b8d379"
},
{
"key": "Cache-Control",
"value": "no-cache, no-store, max-age=0, must-revalidate"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Expires",
"value": "0"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
}
],
"cookie": [],
"body": "{\n \"originalRequestData\": {\n \"kba\": {\n \"riskStrategyNumber\": \"\",\n \"languageCode\": \"\",\n \"outWalletQuestionsRequest\": \"4\",\n \"sessionId\": \"XW4VKT79PAVD9N4K924SXNE1.pidd1v-211213194616699780210\",\n \"answers\": {\n \"outWalletAnswer1\": \"1\",\n \"outWalletAnswer2\": \"3\",\n \"outWalletAnswer3\": \"3\",\n \"outWalletAnswer4\": \"5\"\n }\n }\n },\n \"responseHeader\": {\n \"tenantID\": \"1b8ae9fcc7304ce8ba0b363febdab7\",\n \"requestType\": \"PreciseIdOnly\",\n \"clientReferenceId\": \"4a7d1d39-3bb8-48a3-9c97-a9be0dbc03d5\",\n \"expRequestId\": \"RB000000037452\",\n \"messageTime\": \"2021-12-14T01:48:36Z\",\n \"overallResponse\": {\n \"decision\": \"ACCEPT\",\n \"decisionText\": \"Continue\",\n \"decisionReasons\": [\n \"Continue\"\n ],\n \"recommendedNextActions\": [],\n \"spareObjects\": []\n },\n \"responseCode\": \"R0201\",\n \"responseType\": \"INFO\",\n \"responseMessage\": \"Workflow Complete.\"\n },\n \"clientResponsePayload\": {\n \"orchestrationDecisions\": [\n {\n \"sequenceId\": \"1\",\n \"decisionSource\": \"PreciseId\",\n \"decision\": \"ACCEPT\",\n \"decisionReasons\": [\n \"Continue\"\n ],\n \"score\": 702,\n \"decisionText\": \"Continue\",\n \"nextAction\": \"Continue\",\n \"appReference\": \"2188921893\",\n \"decisionTime\": \"2021-12-14T01:48:42Z\"\n }\n ],\n \"decisionElements\": [\n {\n \"serviceName\": \"PreciseId\",\n \"decision\": \"ACC\",\n \"score\": 702,\n \"decisionText\": \"Accept\",\n \"appReference\": \"2188921893\",\n \"decisions\": [\n {\n \"element\": \"messageNumber\",\n \"value\": \"57\",\n \"reason\": \"015000 0100\"\n },\n {\n \"element\": \"initialDecision\",\n \"value\": \"R10\",\n \"reason\": \"\"\n },\n {\n \"element\": \"finalDecision\",\n \"value\": \"ACC\",\n \"reason\": \"\"\n },\n {\n \"element\": \"kbaResultCode\",\n \"value\": \"0\",\n \"reason\": \"KBA processing successful questions returned\"\n },\n {\n \"element\": \"kbaAcceptReferCode\",\n \"value\": \"ACC\",\n \"reason\": \"\"\n },\n {\n \"element\": \"pidScoreReason1\",\n \"value\": \"B220\",\n \"reason\": \"High revolving balance to limit ratio or low available credit on bankcard trades, or low average balance on open trades\"\n },\n {\n \"element\": \"pidScoreReason2\",\n \"value\": \"B105\",\n \"reason\": \"High credit limits and balances on revolving trades\"\n },\n {\n \"element\": \"pidScoreReason3\",\n \"value\": \"B110\",\n \"reason\": \"Lack of public record information or collection trades indicative that file is susceptible to ID fraud\"\n },\n {\n \"element\": \"pidScoreReason4\",\n \"value\": \"B111\",\n \"reason\": \"Lack of delinquency or derogs on installment and real property trades in the last 24 months indicative that file is susceptible to ID fraud\"\n },\n {\n \"element\": \"pidScoreReason5\",\n \"value\": \"B405\",\n \"reason\": \"No adverse factor observed\"\n }\n ],\n \"rules\": [\n {\n \"ruleName\": \"glbRule01\",\n \"ruleId\": \"3401\",\n \"ruleText\": \"Additional Addresses (0 - 1)\"\n },\n {\n \"ruleName\": \"glbRule02\",\n \"ruleId\": \"1018\",\n \"ruleText\": \"SSN specified on inquiry has been reported more frequently for another\"\n },\n {\n \"ruleName\": \"glbRule03\",\n \"ruleId\": \"3201\",\n \"ruleText\": \"Incoming Application Omits Best Address on File\"\n }\n ],\n \"matches\": [\n {\n \"name\": \"pmAddressVerificationResult1\",\n \"value\": \"A1\"\n },\n {\n \"name\": \"pmPhoneVerificationResult1\",\n \"value\": \"EA\"\n },\n {\n \"name\": \"pmConsumerIDVerificationResult\",\n \"value\": \"EA\"\n },\n {\n \"name\": \"pmDateOfBirthMatchResult\",\n \"value\": \"9\"\n },\n {\n \"name\": \"pmDriverLicenseVerificationResult\",\n \"value\": \"NA\"\n },\n {\n \"name\": \"pmChangeOfAddressVerificationResult1\",\n \"value\": \"N\"\n },\n {\n \"name\": \"pmOFACVerificationResult\",\n \"value\": \"1\"\n },\n {\n \"name\": \"fcraFSIndicator07\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator08\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator09\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator19\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator20\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator22\",\n \"value\": \"N\"\n },\n {\n \"name\": \"fcraFSIndicator27\",\n \"value\": \"Y\"\n },\n {\n \"name\": \"glbFSIndicator01\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator02\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator03\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator04\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator05\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator06\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator10\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator11\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator13\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator14\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator15\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator16\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator17\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator18\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator21\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator25\",\n \"value\": \"N\"\n },\n {\n \"name\": \"glbFSIndicator26\",\n \"value\": \"N\"\n }\n ],\n \"scores\": [\n {\n \"name\": \"preciseIDScore\",\n \"type\": \"score\",\n \"score\": 702\n },\n {\n \"name\": \"validationScore\",\n \"type\": \"score\",\n \"score\": 749\n },\n {\n \"name\": \"verificationScore\",\n \"type\": \"score\",\n \"score\": 810\n },\n {\n \"name\": \"fpdScore\",\n \"type\": \"score\",\n \"score\": 541\n },\n {\n \"name\": \"preciseMatchScore\",\n \"type\": \"score\",\n \"score\": 695\n },\n {\n \"name\": \"kbaScore\",\n \"type\": \"score\",\n \"score\": 100\n }\n ],\n \"otherData\": {\n \"json\": {\n \"fraudSolutions\": {\n \"response\": {\n \"products\": {\n \"preciseIDServer\": {\n \"pidxmlversion\": \"06.00\",\n \"sessionID\": \"XW4VKT79PAVD9N4K924SXNE1.pidd1v-211213194616699780210\",\n \"header\": {\n \"reportDate\": \"12132021\",\n \"reportTime\": \"194616\",\n \"productOption\": \"11\",\n \"subcode\": \"2928537\",\n \"referenceNumber\": \"ee780991-4106-4c19-b189-4bce93f9d00a\"\n },\n \"messages\": {\n \"message\": [\n {\n \"number\": \"57\",\n \"text\": \"015000 0100\",\n \"addrMismatch\": \"N\"\n }\n ],\n \"consumerStatement\": []\n },\n \"summary\": {\n \"transactionID\": \"2188921893\",\n \"initialDecision\": \"R10\",\n \"finalDecision\": \"ACC\",\n \"scores\": {\n \"preciseIDScore\": \"702\",\n \"preciseIDScorecard\": \"AC OPEN V2\",\n \"validationScore\": \"000749\",\n \"validationScorecard\": \"AC OPEN VAL V2\",\n \"verificationScore\": \"000810\",\n \"verificationScorecard\": \"AC OPEN ID THEFT V2\",\n \"complianceDescription\": \"No Compliance Code\",\n \"fpdscore\": \"000541\",\n \"fpdscorecard\": \"AC OPEN FPD V2\",\n \"reasons\": {\n \"reason\": [\n {\n \"value\": \"High revolving balance to limit ratio or low available credit on bankcard trades, or low average balance on open trades\",\n \"code\": \"B220\"\n },\n {\n \"value\": \"High credit limits and balances on revolving trades\",\n \"code\": \"B105\"\n },\n {\n \"value\": \"Lack of public record information or collection trades indicative that file is susceptible to ID fraud\",\n \"code\": \"B110\"\n },\n {\n \"value\": \"Lack of delinquency or derogs on installment and real property trades in the last 24 months indicative that file is susceptible to ID fraud\",\n \"code\": \"B111\"\n },\n {\n \"value\": \"No adverse factor observed\",\n \"code\": \"B405\"\n }\n ]\n }\n }\n },\n \"preciseMatch\": {\n \"version\": \"04.00\",\n \"responseStatusCode\": {\n \"value\": \"Data found for search request\",\n \"code\": \"00\"\n },\n \"preciseMatchTransactionID\": \"CP-CVDN-CJ3ZVMSU3\",\n \"preciseMatchScore\": \"695\",\n \"preciseMatchDecision\": {\n \"value\": \"\",\n \"code\": \" \"\n },\n \"addresses\": {\n \"address\": [\n {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Exact match on first and last name;Exact match on address\",\n \"code\": \"A1\"\n },\n \"type\": {\n \"value\": \"Single family dwelling\",\n \"code\": \"S \"\n },\n \"unitMismatchResult\": {\n \"value\": \"\",\n \"code\": \" \"\n },\n \"highRiskResult\": {\n \"value\": \"No address high risk information found\",\n \"code\": \"N \"\n },\n \"counts\": {\n \"standardizedAddressReturnCount\": 1,\n \"residentialAddressMatchCount\": 2,\n \"residentialAddressReturnCount\": 2,\n \"highRiskAddressReturnCount\": 0,\n \"businessAddressMatchCount\": 0,\n \"businessAddressReturnCount\": 0\n }\n },\n \"detail\": {\n \"standardizedAddressRcd\": {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27332\"\n },\n \"residentialAddressRcd\": [\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"zipPlus4\": \"7727\",\n \"areaCode\": \"323\",\n \"phone\": \"6862545\"\n },\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"areaCode\": \"336\",\n \"phone\": \"9244513\"\n }\n ],\n \"highRiskAddressRcd\": [],\n \"highRiskAddressDescription\": [\n {\n \"highRiskDescription\": \"No high risk business at address/phone\"\n }\n ],\n \"businessAddressRcd\": []\n }\n }\n ]\n },\n \"phones\": {\n \"phone\": [\n {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Exact match to Phone, Exact Match to Name, Exact match to Address\",\n \"code\": \"EA\"\n },\n \"classification\": {\n \"value\": \"Phone matches Landline used for Residential\",\n \"code\": \"LR\"\n },\n \"highRiskResult\": {\n \"value\": \"No phone high risk information found\",\n \"code\": \"N\"\n },\n \"counts\": {\n \"residentialPhoneMatchCount\": 1,\n \"residentialPhoneReturnCount\": 1,\n \"highRiskPhoneReturnCount\": 0,\n \"businessPhoneMatchCount\": 0,\n \"businessPhoneReturnCount\": 0\n }\n },\n \"detail\": {\n \"residentialPhoneRcd\": [\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"areaCode\": \"336\",\n \"phone\": \"9244513\"\n }\n ],\n \"phoneHighRiskRcd\": [],\n \"highRiskPhoneDescription\": [\n {\n \"highRiskDescription\": \"No high risk business at address/phone\"\n }\n ],\n \"businessPhoneRcd\": []\n }\n }\n ]\n },\n \"consumerID\": {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Exact SSN match, Exact Name match, Exact Address match\",\n \"code\": \"EA\"\n },\n \"deceasedResult\": {\n \"value\": \"No\",\n \"code\": \"N\"\n },\n \"formatResult\": {\n \"value\": \"Valid\",\n \"code\": \"V\"\n },\n \"issueResult\": {\n \"value\": \"SSN issued\",\n \"code\": \"I\"\n },\n \"issueState\": \"TX\",\n \"issueStartRange\": \"1972\",\n \"issueEndRange\": \"1975\",\n \"counts\": {\n \"consumerIDReturnCount\": 1\n }\n },\n \"detail\": {\n \"consumerIDRcd\": [\n {\n \"surname\": \"DUSSETT\",\n \"firstName\": \"CARMELLA\",\n \"middle\": \"R\",\n \"aliasName\": [],\n \"address\": \"2824 COX MILL RD\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zipCode\": \"27330\",\n \"zipPlus4\": \"7727\",\n \"areaCode\": \"323\",\n \"phone\": \"6862545\"\n }\n ]\n }\n },\n \"dateOfBirth\": {\n \"summary\": {\n \"matchResult\": {\n \"value\": \"Day of Birth and Month of Birth exact match, Year of Birth exact match (no plus or minus one year logic accommodation)\",\n \"code\": \"9\"\n },\n \"monthOfBirth\": \"10\",\n \"dayOfBirth\": \"30\",\n \"yearOfBirth\": \"1952\"\n }\n },\n \"driverLicense\": {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"Data not available\",\n \"code\": \"NA\"\n },\n \"formatValidation\": {\n \"value\": \"Driver's license not provided or validated\",\n \"code\": \" \"\n }\n }\n },\n \"changeOfAddresses\": {\n \"changeOfAddress\": [\n {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"No change of address information found\",\n \"code\": \"N \"\n },\n \"counts\": {\n \"changeOfAddressReturnCount\": 0\n }\n }\n }\n ]\n },\n \"ofac\": {\n \"summary\": {\n \"verificationResult\": {\n \"value\": \"No match\",\n \"code\": \"1 \"\n },\n \"counts\": {\n \"ofacReturnCount\": 0\n }\n }\n },\n \"previousAddresses\": {\n \"previousAddress\": [\n {\n \"summary\": {\n \"counts\": {\n \"previousAddressReturnCount\": 2\n }\n },\n \"detail\": {\n \"previousAddressRcd\": [\n {\n \"address\": \"503 COURT ST N\",\n \"city\": \"TALLADEGA\",\n \"state\": \"AL\",\n \"zipCode\": \"35160\",\n \"zipPlus4\": \"2021\",\n \"reportedDate\": \"20060527\",\n \"lastUpdatedDate\": \"20060623\"\n },\n {\n \"address\": \"1122 FISHER FERRY ST APT LT12\",\n \"city\": \"THOMASVILLE\",\n \"state\": \"NC\",\n \"zipCode\": \"27360\",\n \"zipPlus4\": \"6004\",\n \"reportedDate\": \"20060412\",\n \"lastUpdatedDate\": \"20060412\"\n }\n ]\n }\n }\n ]\n },\n \"ssnfinder\": {\n \"summary\": {\n \"counts\": {\n \"ssnfinderReturnCount\": 0\n }\n }\n }\n },\n \"fcraDetail\": {\n \"fraudShield\": {\n \"indicator\": [\n {\n \"value\": \"N\",\n \"code\": \"07\"\n },\n {\n \"value\": \"N\",\n \"code\": \"08\"\n },\n {\n \"value\": \"N\",\n \"code\": \"09\"\n },\n {\n \"value\": \"N\",\n \"code\": \"19\"\n },\n {\n \"value\": \"N\",\n \"code\": \"20\"\n },\n {\n \"value\": \"N\",\n \"code\": \"22\"\n },\n {\n \"value\": \"Y\",\n \"code\": \"27\"\n }\n ]\n },\n \"fcrarules\": {\n \"fcrarule\": [\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n }\n ]\n },\n \"adverseActions\": {\n \"adverseAction\": [\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n }\n ]\n }\n },\n \"glbDetail\": {\n \"fraudShield\": {\n \"indicator\": [\n {\n \"value\": \"N\",\n \"code\": \"01\"\n },\n {\n \"value\": \"N\",\n \"code\": \"02\"\n },\n {\n \"value\": \"N\",\n \"code\": \"03\"\n },\n {\n \"value\": \"N\",\n \"code\": \"04\"\n },\n {\n \"value\": \"N\",\n \"code\": \"05\"\n },\n {\n \"value\": \"N\",\n \"code\": \"06\"\n },\n {\n \"value\": \"N\",\n \"code\": \"10\"\n },\n {\n \"value\": \"N\",\n \"code\": \"11\"\n },\n {\n \"value\": \"N\",\n \"code\": \"13\"\n },\n {\n \"value\": \"N\",\n \"code\": \"14\"\n },\n {\n \"value\": \"N\",\n \"code\": \"15\"\n },\n {\n \"value\": \"N\",\n \"code\": \"16\"\n },\n {\n \"value\": \"N\",\n \"code\": \"17\"\n },\n {\n \"value\": \"N\",\n \"code\": \"18\"\n },\n {\n \"value\": \"N\",\n \"code\": \"21\"\n },\n {\n \"value\": \"N\",\n \"code\": \"25\"\n },\n {\n \"value\": \"N\",\n \"code\": \"26\"\n }\n ]\n },\n \"glbRules\": {\n \"glbRule\": [\n {\n \"value\": \"Additional Addresses (0 - 1)\",\n \"code\": \"3401\"\n },\n {\n \"value\": \"SSN specified on inquiry has been reported more frequently for another\",\n \"code\": \"1018\"\n },\n {\n \"value\": \"Incoming Application Omits Best Address on File\",\n \"code\": \"3201\"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n },\n {\n \"value\": \"\",\n \"code\": \" \"\n }\n ]\n }\n }\n }\n }\n }\n }\n }\n }\n }\n ]\n }\n}"
}
]
},
{
"name": "[Step 2] Submit OTP (Experian adds your mobile# to a test identity's file)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"{{_otp}}\",\n \"sessionId\": \"{{_sessionID}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/otp",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"otp"
]
}
},
"response": []
}
]
}
]
},
{
"name": "Screening Flows",
"item": [
{
"name": "Precise ID Score (standalone)",
"item": [
{
"name": "Precise ID Score (screening)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"try {",
" let sessionId = data.clientResponsePayload.decisionElements[0].otherData.json.fraudSolutions.response.products.preciseIDServer.sessionID;",
" pm.collectionVariables.set(\"_sessionID\",sessionId);",
" console.log(\"SessionID:\", sessionId);",
"} catch(error) {",
" console.log(\"Failed to get SessionID:\",error);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"firstName\": \"CARMELLA\",\n \"lastName\": \"DUSSETT\",\n \"middleName\": \"R\",\n \"nameSuffix\": \"\",\n \"dob\": \"1952-10-30\",\n \"street1\": \"2824 COX MILL RD\",\n \"street2\": \"\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zip\": \"273307727\",\n \"pobox\": \"\",\n \"phone\": \"3369244513\",\n \"email\": \"\",\n \"ssn\": \"666504240\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/screening",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"screening"
]
},
"description": "Minimum:\n\n* name\n* email\n \n\nIf OTP is determined to be possible based on the provided info, then the user will be taken through the OTP flow. Otherwise,"
},
"response": []
}
]
},
{
"name": "Precise ID Score + Knowledge IQ (KIQ) (*Coming Soon)",
"item": [
{
"name": "[Step 1] Precise ID Score",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"try {",
" let sessionId = data.clientResponsePayload.decisionElements[0].otherData.json.fraudSolutions.response.products.preciseIDServer.sessionID;",
" pm.collectionVariables.set(\"_sessionID\",sessionId);",
" console.log(\"SessionID:\", sessionId);",
"} catch(error) {",
" console.log(\"Failed to get SessionID:\",error);",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"firstName\": \"CARMELLA\",\n \"lastName\": \"DUSSETT\",\n \"middleName\": \"R\",\n \"nameSuffix\": \"\",\n \"dob\": \"1952-10-30\",\n \"street1\": \"2824 COX MILL RD\",\n \"street2\": \"\",\n \"city\": \"SANFORD\",\n \"state\": \"NC\",\n \"zip\": \"273307727\",\n \"pobox\": \"\",\n \"phone\": \"3369244513\",\n \"email\": \"\",\n \"ssn\": \"666504240\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/experian/cc2/screening",
"host": [
"{{url}}"
],
"path": [
"experian",
"cc2",
"screening"
]
},
"description": "Minimum:\n\n* name\n* email\n \n\nIf OTP is determined to be possible based on the provided info, then the user will be taken through the OTP flow. Otherwise,"
},
"response": []
},
{
"name": "[Step 2] ...dne (Coming Soon)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"riskStrategyNumber\": \"\",\n \"languageCode\": \"\",\n \"championChallengerRandomNumber\": \"\",\n \"outWalletQuestionsRequest\": \"4\",\n \"sessionId\": \"{{_sessionID}}\",\n \"answers\": {\n \"outWalletAnswer1\": \"1\",\n \"outWalletAnswer2\": \"3\",\n \"outWalletAnswer3\": \"3\",\n \"outWalletAnswer4\": \"5\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": ""
}
},
"response": []
},
{
"name": "[Step 2] ...dne (Coming Soon)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"{{_otp}}\",\n \"sessionId\": \"{{_sessionID}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": ""
}
},
"response": []
}
]
}
]
}
]
}
],
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{utoken}}",
"type": "string"
}
]
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "url",
"value": "https://api-sandbox.stitchcredit.com:443/api"
},
{
"key": "mware_uname",
"value": "TO BE DEFINED"
},
{
"key": "mware_passwd",
"value": "TO BE DEFINED"
},
{
"key": "utoken",
"value": ""
},
{
"key": "equifaxPDFId",
"value": ""
}
]
}