curl --request POST \
--url https://api-sandbox.argyle.com/v2/verifications \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"user_details": {
"first_name": "Bob",
"last_name": "Jones",
"ssn": "123-45-6789",
"email": "[email protected]",
"phone_number": "+12125555555",
"address": {
"city": "New York",
"line1": "759 Victoria Plaza",
"line2": null,
"state": "New York",
"country": "US",
"postal_code": "10014"
},
"birth_date": {
"year": 1990,
"month": 6,
"day": 15
}
},
"employments": [
{
"employer": "Starbucks",
"status": "active",
"hire_date": "2015-08-28",
"termination_date": null
}
],
"report": {
"type": "doc-voi-mortgage"
},
"loan": {
"number": "1234",
"borrower_id": "ABC789",
"application_id": "2121313",
"officer_email": "[email protected]"
},
"billing": {
"cost_center": "5"
}
}
'