curl --location 'https://api.sharkship.in/v1/b2c/order/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"customer": {
"name": "John Doe",
"mobile_no": "9876543210",
"email": "john.doe@example.com",
"address": {
"address_lane1": "123 Main Street",
"address_lane2": "",
"Pin": "110001",
"landmark": "",
"city": "New Delhi",
"state": "Delhi",
"pin": 110001
}
},
"order": {
"product_name": "Shirt",
"product_price": 1000,
"cod_amount": 1000,
"product_quantity": 1,
"tax_rate": "",
"product_sku_no": "SKU-DUMMY-001",
"client_orderId": "ORD-DUMMY-001",
"product_category": "Apparels and Accessories",
"payment_mode": "COD",
"service_type": "PAN_INDIA",
"lineItems": [
{
"product_name": "Shirt",
"product_price": 1000,
"product_quantity": 1,
"product_category": "Apparels and Accessories",
"product_sku_no": "SKU-DUMMY-001",
"tax_rate": null
}
]
},
"pickup_details": {
"address_id": "1"
},
"shipment_details": {
"weight": 0.5,
"volumetric_weight": {
"length": 10,
"width": 10,
"height": 10
},
"carrier": {
"carrierId": 101,
"courier_type": "SURFACE",
"base_weight": 0.25
}
}
}'