woocommerce / woocommerce-ios

WooCommerce iOS app
https://www.woocommerce.com/mobile
GNU General Public License v2.0
301 stars 109 forks source link

[Mobile Payments] Add support for `PUT` on `/wc/v3/payment_gateways` #7477

Closed joshheald closed 2 years ago

joshheald commented 2 years ago

Description

We will add an onboarding step to enable the Cash on Delivery payment method.

This screen has an Enable button which should enable the payment gateway. To enable it, we need to make a PUT request to enable the cod payment gateway.

See the API docs for more information. The key fields for this feature are enabled, title, description, and instructions.

This issue covers the network request only, not hooking it up to the button.

joshheald commented 2 years ago

Since writing this ticket, I've discovered that there is no POST method for the payment_gateways endpoint. It isn't required for our purposes, so I've removed it from this ticket.