Update payee details for the given Payee Id.
curl --location --request POST 'https://api.sandbox.velopayments.com//v4/payees//payeeDetailsUpdate' \
--header 'Content-Type: application/json' \
--data-raw '{
"address": {
"city": "Key West",
"country": "US",
"countyOrProvince": "FL",
"line1": "500 Duval St",
"line2": "line2",
"line3": "line3",
"line4": "line4",
"zipOrPostcode": "33945"
},
"challenge": {
"description": "challenge description",
"value": "challenge test"
},
"company": {
"name": "ABC Group Plc",
"operatingName": "ABC Co",
"taxId": "123123123"
},
"email": "bob@example.com",
"individual": {
"dateOfBirth": "1985-01-01",
"name": {
"firstName": "Bob",
"lastName": "Smith",
"otherNames": "A",
"title": "Mr"
},
"nationalIdentification": "AB123456C"
},
"language": "en-US",
"payeeType": "Individual"
}'
{}