Hello everybody, we need to save with the transaction additional data - customer number. Additional field "customernumber": "******", was added to the JSON payer section: "payer": {
"address": {
"address_line_1": "*****",
"admin_area_2": "*******",
"country_code": "DE",
"postal_code": "*****"
},
"email_address": "*****",
"customernumber": "******",
"name": {
"given_name": "*****",
"surname": "*****"
},
"payer_id": "*********"
}, seems to be ok, but in the response of the capture call, this data field is missed.. How to do it properly - to add additional data to the create order API call?
... View more