> ## Documentation Index
> Fetch the complete documentation index at: https://yn-c9bb3266.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Shipping Reference

> Enum values for shipping types and carriers used in order details.

Use these values when sending shipping information in the `additional_data.order.shipping` object of a payment request.

## Shipping Types

Use in the `additional_data.order.shipping.type` field.

| Type             | Description                         |
| ---------------- | ----------------------------------- |
| `CUSTOM`         | Custom shipping arrangement         |
| `MILITARY`       | Military-specific shipping          |
| `ELECTRONIC`     | Electronic delivery (digital goods) |
| `EXPRESS`        | Expedited delivery service          |
| `STANDARD`       | Regular shipping method             |
| `SCHEDULED`      | Pre-arranged delivery date          |
| `ECONOMY`        | Cost-effective shipping option      |
| `PRIORITY`       | Higher priority handling            |
| `SAME_DAY`       | Same-day delivery                   |
| `NEXT_DAY`       | Next business day delivery          |
| `THIRD_DAY`      | Three-day delivery window           |
| `STORE_PICK_UP`  | Customer pickup at retail location  |
| `LOCKER_PICK_UP` | Customer pickup at automated locker |
| `OTHER`          | Unspecified shipping method         |

## Shipping Carriers

Use in the `additional_data.order.shipping.carrier` field.

| Carrier               | Description                                 |
| --------------------- | ------------------------------------------- |
| `UPS`                 | United Parcel Service                       |
| `USPS`                | United States Postal Service                |
| `FEDEX`               | Federal Express                             |
| `DHL`                 | DHL Express                                 |
| `PUROLATOR`           | Canadian courier service                    |
| `GREYHOUND`           | Greyhound package service                   |
| `AR_CORREO_ARGENTINO` | Argentine postal service (Correo Argentino) |
| `AR_OCA`              | Argentine courier (OCA)                     |
| `OTHER`               | Alternative carrier                         |

## Usage Example

```json theme={"theme":{"light":"github-dark","dark":"github-dark"}}
{
  "additional_data": {
    "order": {
      "shipping_amount": 15.00,
      "shipping": {
        "type": "EXPRESS",
        "carrier": "FEDEX",
        "description": "2-day express delivery",
        "deliver_at": "2026-03-12T18:00:00.000Z"
      }
    }
  }
}
```

## Related Pages

* [Payment Object](/api-reference/payments/object). Where shipping details are used
* [Items Category](/reference/items-category). Item category enum values
