Why does the «carts/mine/payment-information» request return 404?

It is because storage.put is incorrect HTTP method for the /carts/mine/payment-information request.
You should use storage.get or storage.post depends on your task.

Examples

storage.get

storage.post

set-payment-information.js

place-order.js

1 Like