curl --request POST \
--url https://api.cadanapay.com/v1/users/{userId}/virtual-accounts \
--header 'Content-Type: application/json' \
--data '
{
"currency": "USD",
"customIdentification": {
"type": "ssn",
"number": "123-45-6789"
},
"jobInformation": {
"employerName": "Acme Corp",
"address": {
"line1": "123 Main St",
"city": "Anytown",
"postalCode": "12345",
"state": "CA",
"countryCode": "US"
},
"employerWebsite": "",
"title": "Software Engineer",
"type": "full-time",
"netPay": {
"amount": 10000,
"currency": "USD"
},
"frequency": "monthly",
"contractStartDate": "2021-01-01",
"contractEndDate": "2025-05-06"
},
"suppressNotification": true
}
'