Webhook
VX will fire a webhook to your defined endpoint after each components execution through the journey.
post
[YOUR_ENDPOINT}
1
{
2
"fn": "John",
3
"ln": "Smith",
4
"addr": "123 Main St",
5
"city": "Stratford",
6
"state": "CT",
7
"zip": "06614",
8
"dob": "19880521",
9
"email": "[email protected]",
10
"reference": "12345-test",
11
"status": "PENDING",
12
"additionalData": {
13
"value_1": "test1",
14
"value_2": "test2"
15
},
16
"dcams_plus": {
17
"document_data": {
18
"FirstName": "LOUISA",
19
"LastName": "SAMPLE",
20
"MiddleName": "ANNA",
21
"FullAddress": "109 S FOSTER RD, BATON ROUGE, LA, 70808-0000",
22
"Address": "109 S FOSTER RD",
23
"City": "BATON ROUGE",
24
"State": "LA",
25
"Zip": "70808-0000",
26
"DateOfBirth": "19720629",
27
"Height": "5-08",
28
"Sex": "F",
29
"EyeColor": "BRN",
30
"DocumentNumber": "003009381",
31
"IssueDate": "20140714",
32
"ExpirationDate": "20300629",
33
"CountryCode": "USA", // (ISO Alpha 2 or 3)
34
"DocumentType": "DRIVERS LICENSE" // other values are PASSPORT, IDENTITY CARD and UNKNOWN
35
},
36
"confirmation": 92480850,
37
"action": "REVIEW",
38
"issues": ["DOB DOES NOT MATCH DOCUMENT", "FIRST NAME DOES NOT MATCH DOCUMENT"],
39
"detail": "TRANSACTION REQUIRES FURTHER ATTENTION"
40
},
41
"storage": {
42
"success": false
43
}
44
}
Last modified 7mo ago