Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PUT credit-cards/{paymentMethodId} update the credit card detail and to mark it as default.
Sr No.API EndpointDescriptionTasks/PRsStatusPhase
Customer Profile
1POST /customersTo register the customer.


2GET /customers/{customerPartyId}To get the customer's personal information, addresses, emails, phones, etc.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
3PUT /customers/{customerPartyId}To update the customer's personal information.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
4POST /customers/reset-passwordTo get the reset password link on the registered email.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
5POST /customers/{customerPartyId}/change-passwordTo change the password.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
6POST /customers/{customerPartyId}/shipping-addressesTo create the postal address.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
7GET /customers/{customerPartyId}/shipping-addressesTo get the customer's postal addresses


8PUT /customers/{customerPartyId}/shipping-addresses/{contactMechId}To update the postal address and to mark the default address.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
9DELETE /customers/{customerPartyId}/shipping-addresses/{contactMechId}To delete/expire the postal address.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
10POST /customers/{customerPartyId}/creditpayment-cardsmethodsTo create a credit card.save a payment method e.g. credit card, gift card, eft accounthttps://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
11GET /customers/{customerPartyId}/payment-methodsTo https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
12DELETE /customers/{customerPartyId}/credit-cards/{paymentMethodId}To remove a credit card.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
13POST /customers/{customerPartyId}/gift-cardsTo create a gift card.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
get the user's payment methods eg. saved credit cards, gift cards, eft accounts


1214PUT /customers/{customerPartyId}/giftpayment-cardsmethods/{paymentMethodId}To update the gift card detail and to mark it as defaultpayment method detail.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
1513DELETE /customers/{customerPartyId}/giftpayment-cardsmethods/{paymentMethodId}To remove the gift card.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
16POST /customers/{customerPartyId}/eft-accountsTo create an EFT account.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
17PUT /customers/{customerPartyId}/eft-accounts/{paymentMethodId}To update the EFT account detail and to mark it as default.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
18DELETE /customers/{customerPartyId}/eft-accounts/{paymentMethodId}To remove the EFT a saved credit card, gift card, eft account.https://github.com/apache/ofbiz-plugins/pull/45In Code ReviewI
Order History & Return
1GET /customers/{customerPartyId}/ordersTo fetch all the orders of a customer.
PlanningI
2GET /customers/{customerPartyId}/orders/{orderId}To fetch the order detail.
PlanningI
3PUT /customers/{customerPartyId}/orders/{orderId}To update the order. Right now the support to cancel an item(partially or fully) is there. That should be handled in this API.
PlanningI
4GET /customers/{customerPartyId}/orders/{orderId}/order-pdfTo get the order pdf.
PlanningI
5GET /customers/{customerPartyId}/orders/{orderId}/invoice-pdfTo get the invoice pdf.
PlanningI
6POST /customers/{customerPartyId}/returnsTo create a return.
PlanningI

...