---
title: "Create multibox orders"
method: POST
path: "/api/v1/orders/multibox"
tags: ["Orders"]
---

# Create multibox orders

`POST /api/v1/orders/multibox`

Create multibox orders. N child shipments will be created plus the master shipment. The number of child shipments is determined by the `packages` field, and by default, always 1 master shipment is created.

## Request body

- MultiboxOrderRequest
  - `apikey` string — API key for authentication
  - `deliveryType` 'taylormade' | 'sameday' | 'nextday' | 'nxd' | 'spt' | 'tlm' | 'smd' — Type of delivery
  - `packageSize` 'xs' | 's' | 'm' | 'l' | 'xl' — Size of the package
  - `notes` string — Additional notes
  - `packages` integer — Number of packages
  - `cashOnDelivery` boolean — Whether cash on delivery is enabled
  - `amountCash` number, float — Amount for cash on delivery
  - `SecurePackage` boolean — Whether secure package is enabled
  - `amountSecure` number, float — Amount for secure package
  - `receivedId` string — Identifier for the received order
  - `origin` Origin
    - `sender` string
    - `nameSender` string
    - `lastNameSender` string
    - `emailSender` string
    - `phoneSender` string
    - `addressOrigin` string
    - `numberOrigin` string
    - `codePostalOrigin` string
    - `country` 'MEX' | 'CHL' | 'PER' | 'COL'
  - `destination` Destination
    - `receiver` string
    - `nameReceiver` string
    - `lastNameReceiver` string
    - `emailReceiver` string
    - `phoneReceiver` string
    - `addressDestination` string
    - `numberDestination` string
    - `codePostalDestination` string
    - `country` 'MEX' | 'CHL' | 'PER' | 'COL'

## Response `201`

Success

- SuccessResponse
  - `code` integer
  - `data` object[]
    - `counter` integer
    - `trackingid` string
    - `clienid` string
    - `receivedId` string
    - `created` string, date-time
  - `trace_id` string

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.dev/99minutos/apis/api-version-3.md) · [All operations](https://skmtc.dev/99minutos/apis/api-version-3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/99minutos/api-version-3/revisions/3eca3996fd97/schema)
