> For the complete documentation index, see [llms.txt](https://eshop.gitbook.io/eshopbox-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eshop.gitbook.io/eshopbox-developers/consignment/inward-consignment/filtering.md).

# Filtering

Below is a list of attributes and operators available for filtering inward consignment.

| Attribute            | Description                                               | Type      | Operator | Example                              |
| -------------------- | --------------------------------------------------------- | --------- | -------- | ------------------------------------ |
| `from`               | your party id from where your items will be shipped       | `string`  | =        | from=2                               |
| `to`                 | `Eshopbox` warehouse id                                   | `string`  | =        | to=7                                 |
| `consignment_type`   | Consignment type                                          | `string`  | =        | `consignment_type=INWARD`            |
| `status`             | Consignment status                                        | `string`  | =        | status =COMPLETE                     |
| `created_from`       | Consignment created date                                  | `string`  | =        | created\_from=2020-01-20             |
| `created_to`         | Consignment created date                                  | `string`  | =        | created\_to=2020-01-30               |
| `qty_from`           | Consignment quantity                                      | `string`  | =        | qty\_from=100                        |
| `qty_to`             | Consignment quantity                                      | `string`  | =        | qty\_to=300                          |
| `consignment_number` | Identifier for this inward consignment                    | `string`  | =        | consignment\_number=CON/19-20/123456 |
| `document_number`    | Consignment document number                               | `string`  | =        | document\_number=0092001405          |
| `document_type`      | Consignment document type                                 | `string`  | =        | document\_type=stc                   |
| `receivedOnFrom`     | Consignment delivered date                                | `string`  | =        | receivedOnFrom=2020-02-20            |
| `receivedOnTo`       | Consignment delivered date                                | `string`  | =        | receivedOnTo=2020-02-25              |
| `completedOnFrom`    | Consignment completed date                                | `string`  | =        | completedOnFrom=2020-01-20           |
| `completedOnTo`      | Consignment completed date                                | `string`  | =        | completedOnTo=2020-02-02             |
| `consignmentDetails` | If you want consignment received details with consignment | `boolean` | =        | consignmentDetails=true              |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://eshop.gitbook.io/eshopbox-developers/consignment/inward-consignment/filtering.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
