Deep Link with React Native App
While create the session ID, define the URL
Create New Session ID
Headers
Name
Type
Description
{
"session_key": "XXX-ABCDE12345",
"theme": "PRO",
"active": true,
"status": "IDLE",
"redirect_url": "https://www.url-to-redirect-user-to.com",
"inspect_started_at": null,
"inspect_ended_at": null,
"created_at": "2021-05-25T11:50:49.000000Z",
"updated_at": "2021-05-25T11:50:49.000000Z",
"language": "EN",
"capture_url": "https://demoadmin.vehiclecapture.com/TCB-123...",
"options": {
"client_id": "SOUTH234889",
"sms": {
"to": "647-455-XXXX",
"to_name": "Jane Smith",
"from": "647-422-XXXX",
"by": "Steve's Test Dealer",
}
},
"vehicle": {
"vin": "JN1CV6AR9BMXXXXXX"
}
}Sample Request
Setting up for iOS
Adding a URL scheme

Update AppDelegate.m
Setting up for Android
Add intent filters for incoming links
Handle URLs
1. If the app is already open, the app is foregrounded and a Linking 'url' event is fired
2. If the app is not already open, it is opened and the url is passed in as the initialURL
Example
Result

Test
iOS

Android
Last updated
