product
- create a new product. Admin can later set this product
as a global product, or seller-specific.product_collection
- create a new product collection.product_type
- create a new product type.product_category
- create a new product category.review_remove
- ask to remove the unfair review from customer.pending
status.rejected
. Admin can also provide a note for the request submitter explaining his decision. Seller can be notified via email about the status change.approved
, and appropiate resource will be created using payload provided by the submitter. Seller can be notified via email about the status change.product_category
. He performs following request:accepted
status.rejected
. Admin can also provide a note for the request submitter explaining his decision. Submitter can be notified via email about the status change.approved
, and seller is created. Submitter can be notified via email about the status change.OrderReturnRequest
. Inside this object the customer provides array of the tuples line_item_id
and quantity
, as well as the customer_note
(return reason).
pending
refunded
, withdrawn
or escalated
.refunded
, and proceeds with the return and refund.withdrawn
, and provides the reason.escalated
.escalated
status are reviewed by the marketplace admin who makes the final decision. The decision can be either refunded
or canceled
. Admin can also provide the reason behind his decision.apps/backend/src/subscribers
. There you can customize the actions that are performed in response to each event.
requests.seller.created
- Triggered when a new seller registration request is createdrequests.seller.accepted
- Triggered when a seller registration request is approved by adminrequests.seller.rejected
- Triggered when a seller registration request is rejected by adminrequests.product_category.accepted
- Triggered when a product category creation request is approvedrequests.product_category.rejected
- Triggered when a product category creation request is rejectedrequests.product_collection.accepted
- Triggered when a product collection creation request is approvedrequests.product_collection.rejected
- Triggered when a product collection creation request is rejectedrequests.product.created
- Triggered when a new product creation request is submittedrequests.product.accepted
- Triggered when a product creation request is approvedrequests.product.rejected
- Triggered when a product creation request is rejectedrequests.product_type.accepted
- Triggered when a product type creation request is approvedrequests.product_type.rejected
- Triggered when a product type creation request is rejectedrequests.product_tag.accepted
- Triggered when a product tag creation request is approvedrequests.product_tag.rejected
- Triggered when a product tag creation request is rejectedrequests.*.created
- A generic event triggered when any type of request is created