-
Notifications
You must be signed in to change notification settings - Fork 0
/
response.txt
38 lines (38 loc) · 1.51 KB
/
response.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.fakecredit.com">
<soapenv:Header/>
<soapenv:Body>
<ws:creditReportResponse>
<ws:out>
<!--Zero or more repetitions:-->
<ws:Report>
<!--type: string-->
<ws:firstName>${usregfirstName}</ws:firstName>
<!--type: string-->
<ws:lastName>${usreglastName}</ws:lastName>
<!--type: string-->
<ws:dob>${usregdob}</ws:dob>
<!--type: string-->
<ws:ssn>${usregssn}</ws:ssn>
<!--type: string-->
<ws:score>${score}</ws:score>
<!--type: string-->
<ws:latestAddress1>${usaddress}</ws:latestAddress1>
<!--type: string-->
<ws:latestAddress2></ws:latestAddress2>
<!--type: string-->
<ws:city>${uscity}</ws:city>
<!--type: string-->
<ws:state>${usstate}</ws:state>
<!--type: string-->
<ws:country>${country}</ws:country>
<!--type: string-->
<ws:postalCode>${uszip}</ws:postalCode>
<!--type: string-->
<ws:currency>${currencycode}</ws:currency>
<!--type: boolean-->
<ws:addressValidated>${validated}</ws:addressValidated>
</ws:Report>
</ws:out>
</ws:creditReportResponse>
</soapenv:Body>
</soapenv:Envelope>