# Shipment

### Shipment

Physical or digital transfer of ordered goods/services

#### Attributes

| Name              | Type                                                  | Description                                        |
| ----------------- | ----------------------------------------------------- | -------------------------------------------------- |
| `id`              | String                                                | unique identifier                                  |
| `state`           | String                                                | shipment state (`ready`, `shipped` or `delivered`) |
| `source`          | [Address](/management-api/objects/order.md#address)   | address to pick shipment from                      |
| `destination`     | [Address](/management-api/objects/order.md#address)   | address to deliver shipment to                     |
| `created`         | [DateTime](/management-api/objects/order.md#datetime) | shipment creation timestamp                        |
| `provider`        | String                                                | provider of shipping service                       |
| `target_delivery` | [DateTime](/management-api/objects/order.md#datetime) | planned date and time of delivering shipment       |

#### Example

```javascript
{
    "id": "1",
    "state": "shipped",
    "source": <Address>,
    "destination": <Address>,
    "created": <DateTime>,
    "provider": "matrix-rate",
    "target_delivery": <DateTime>,
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.shopgo.me/management-api/objects/shipment.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
