Upgrading to Edge Connect V2
We know that migrating to a new platform can often be time-consuming and complex—but upgrading to Edge Connect V2 is designed to be different. We've built V2 with a focus on minimizing integration effort and maximizing continuity, so you can take advantage of new capabilities without overhauling your existing setup. The upgrade path from Edge Connect V1 has been intentionally curated to provide all of the systematic improvements of Edge Connect V2 in your current configuration by only making a few small changes:
1. Updating API call
Note: This step is only necessary for customers who initiate product requests through API calls prior to launching the Edge Connect widget through JavaScript. If your Edge Connect V1 configuration passes consumer information directly into the widget, please proceed to Step 2.
Update Request URL
Replace V1 API URLhttps://ninjafetch.com/api/v1/ibv/requests
with V2 API URLhttps://api.edgescore.com/api/v2/ibv/requests
Updating Request Parameters
Add the following parameters to the body of your currently configured request:
Name | Description | Example | Type | Expected Format | Required |
---|---|---|---|---|---|
context_id | Unique identifier provided by the client for the consumer’s application. Sometimes referred to as Loan ID or Application ID. | loan12345 | String | Yes | |
context_data | Optional text that further describes the context_id value. | application12345 | String | No |
Remove the following parameter from the body of your currently configured request:
- application_id
Example containing full list of Edge Connect V2 Parameters
{
"consumer_id": "CN32892349",
"context_id": 'abc12345',
"context_data": 'application12345',
"ssn": "322-32-5345",
"first_name": "John",
"middle_name": "Edge",
"last_name": "Smith",
"birth_date": "1776-07-04",
"full_address": "full address",
"street_address": "222 South Riverside Plaza",
"street_address2": "Suite 200",
"city": "Chicago",
"state_code": "IL",
"zip_code": "60606",
"home_phone": "855-646-5201",
"mobile_phone": "855-646-5201",
"email": "[email protected]",
"secondary_email": "[email protected]",
"employer_name": "EDGE",
"secondary_employer_name": "EDGE2",
"bank_name": "Bank of America",
"routing_number": "0740000101",
"account_number": "2302389238923",
"debit_card_number": "1234567890123456",
"additional_data": {
"vantage_score": 500,
"housing": "rent",
"existing_customer": true
},
"reference_date": "2023-08-01"
}
2. Upgrading JavaScript Source
Replace the following JavaScript source:
<script type='text/javascript' src="https://ninjafetch.com/v1/ninjafetch.js"></script>
Update to:
<script type='text/javascript' src="https://connectv2.edgescore.com/edge_connect_v1_adapter.js"></script>
...and that's it! Congratulations! You have successfully upgraded to the Edge Connect V2 platform!
Updated about 1 month ago