Place Order
This API is offering to Place Simple Order.
POST
{{Base_url}}/rest/V1/carts/mine/payment-information
This API is used to place an order in Magento by submitting the payment details and finalizing the cart as an order. It transitions the shopping cart to an order and assigns an order entity ID.
Body
The given cURL command is an API request to the Magento 2 platform for placing an order in a customer's shopping cart using the specified payment method. This request finalizes the cart and generates an order based on the cart details, shipping information, and payment method.
Attributes in Payload
paymentMethod
:An object that defines the payment method for the order.
method
:Value:
"razorpay"
Specifies the code of the payment method being used.
Common values include:
"cashondelivery"
for Cash on Delivery."cashfree"
for Cashfree payment gateway."razorpay"
for Razorpay payment gateway.
Purpose of the API
Places the Order:
Finalizes the current cart (
mine
) by associating it with the payment method.Converts the cart into a confirmed order in Magento.
Processes Payment:
Initiates the payment process with the selected payment gateway (
razorpay
).
Generates Order ID:
On success, the API responds with an order ID confirming the order placement.
The response 237161
indicates that the order has been successfully placed, and the number represents the Entity ID.
Last updated