You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the documentation:
"Email address of the registered user (merchant) to whom the payment is made. It is highly recommended to use merchant_code instead of pay_to_email."
This issue proposes updating the SDK to align with the current API recommendations by replacing pay_to_email with merchant_code in the Checkout creation process.
This change would involve:
Updating the create method signature in the Checkouts class
Modifying the payload construction to use merchant_code
Updating relevant documentation and tests
A pull request with these changes will be submitted for review.
The text was updated successfully, but these errors were encountered:
The current SumUp API documentation for creating checkouts (https://developer.sumup.com/api/checkouts/create#checkouts-create) recommends using
merchant_code
instead ofpay_to_email
. However, the current SDK still usespay_to_email
.According to the documentation:
"Email address of the registered user (merchant) to whom the payment is made. It is highly recommended to use
merchant_code
instead ofpay_to_email
."This issue proposes updating the SDK to align with the current API recommendations by replacing
pay_to_email
withmerchant_code
in the Checkout creation process.This change would involve:
create
method signature in theCheckouts
classmerchant_code
A pull request with these changes will be submitted for review.
The text was updated successfully, but these errors were encountered: