Authorization: Bearer <static_token>Content-Type: application/jsonpostalCode to let Flype determine the pickup location.pickupLocation object (street, city, country, etc.).curl --location --request POST '/order/PlaceBulk' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"list": [
{
"totalCOG": 120.25,
"shipperRef": "0123456",
"remarks": "Leave with doorman",
"recipient": {
"name": "John Doe",
"phoneNumber": "13026021805",
"email": "john@gmail.com",
"address": {
"street1": "235 West 56th street",
"street2": "APT 28C",
"streetNumber": "235",
"postalCode": "10019",
"city": "New York",
"country": "United States",
"latitude": 25.179812819235188,
"longitude": 55.265600039741905
}
},
"items": [
{
"itemName": "Product Name",
"weight": 1.5,
"quantity": 2
}
],
"totalOrderWeight": 3000,
"externalLocationId": "LOC123456",
"merchantName": "Store Name"
}
]
}'{
"status": "success",
"data": {
"acceptedOrders": [
{
"status": "SUCCESS",
"shipperRef": "0123456",
"trackingNumber": "UH44RJUVSC0X",
"estimatedDeliveryWindowUtc": {
"start": "2026-02-15T18:00:00Z",
"end": "2026-02-15T22:00:00Z"
},
"externalLocationId": "LOC123456",
"label": "https://storage.googleapis.com/flype-a8461.appspot.com/label/11F0048348C1EED6A79F41010A800004/shippingLabel",
"pickupDateUtc": "2026-02-15T13:00:00Z"
},
{
"status": "SUCCESS",
"shipperRef": "0123437",
"trackingNumber": "TY08EJXVNCYO",
"estimatedDeliveryWindowUtc": {
"start": "2026-02-15T18:00:00Z",
"end": "2026-02-15T22:00:00Z"
},
"externalLocationId": "LOC123456",
"label": "https://storage.googleapis.com/flype-a8461.appspot.com/label/11F0028344C1EED6A77F51010A800004/shippingLabel",
"pickupDateUtc": "2026-02-15T13:00:00Z"
}
]
}
}