curl --request POST \
--url https://dev-api-be.localwell.in/app/partner/v1/order/add_customer_order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-pharmacy-id: <x-pharmacy-id>' \
--data '
{
"customer_id": 25,
"products": [
{
"medicine_id": 12552,
"order_quantity": 10,
"sale_rate": 100
}
],
"partner_order_identifier": "ORD-A1245",
"order_notes": "Order Notes Here",
"doctor_name": "John Doe"
}
'