A www form provides my cgi script with a full name for the credit card information. The PayPal Rest API wants a first_name and last_name. If there are more than two 'words' in the full name, then what is the way to submit the information? I want to avoid declined cc payments.
Say, given
full_name="Mr. I M Testy".
Should I submit
first_name="Mr. I M", last_name="Testy"
Or what?
Where is the guidance on the Paypal rest documentation?