ConfirmationCode Property
This property indicates whether the address is Confirmed.
Syntax
addressverify.getConfirmationCode([callback])
Default Value
""
Callback
The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).
The callback for the getConfirmationCode([callback]) method is defined as:
function(err, data){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'data' is the value returned by the method.
The callback for the setConfirmationCode([callback]) method is defined as:
function(err){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'err' has 2 properties which hold detailed information:
err.code err.message
Remarks
ConfirmationCode will be filled after a call to the VerifyAddress method. It indicates whether the address on file for the PayPal account specified by the Email property is Confirmed. Knowing whether a shipping address is Confirmed or not can help catch fraudulent transactions. This property may contain one of the following values:
"None" | The Email address does not match any email address on file with PayPal. |
"Confirmed" | If the value of the StreetMatch property is "Matched", PayPal responds that the entire postal address is confirmed. |
"Unconfirmed" | PayPal responds that the postal address is unconfirmed. |
This property is read-only.
Data Type
String