> For the complete documentation index, see [llms.txt](https://arito-dev.gitbook.io/arito-api-integration-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://arito-dev.gitbook.io/arito-api-integration-documentation/list-api/export-goods.md).

# Export Goods

Used to retrieve a list of customers based on specified conditions

<table data-view="cards"><thead><tr><th></th><th></th></tr></thead><tbody><tr><td>Method</td><td><a data-footnote-ref href="#user-content-fn-1"><mark style="color:green;"><strong>POST</strong></mark></a></td></tr><tr><td>Link</td><td><mark style="color:orange;"><strong>{{host}}/Item/Export</strong></mark></td></tr></tbody></table>

{% tabs %}
{% tab title="Request" %}

## Authorization

<table data-header-hidden><thead><tr><th width="183"></th><th></th></tr></thead><tbody><tr><td>Type</td><td><mark style="color:blue;">Bearer Token</mark></td></tr><tr><td>Token</td><td><mark style="color:orange;">{{access_token}}</mark></td></tr></tbody></table>

## Body

```json
{
    "memvars": {
        "ma_vt": "API-VT0001",
        "modifyDateFrom": null,
        "pageIndex": 1
    }
}
```

## Parameter description

<table><thead><tr><th width="180">Name</th><th width="59" data-type="checkbox">(*)</th><th width="78">Type</th><th>Description</th></tr></thead><tbody><tr><td>ma_vt</td><td>false</td><td>string</td><td>Material identification code required</td></tr><tr><td>modifyDateFrom</td><td>false</td><td>string</td><td>Customer created on date</td></tr><tr><td>pageIndex</td><td>true</td><td>string</td><td>When the API returns data, it will provide paginated results, with a pageIndex parameter to specify the desired page to retrieve</td></tr></tbody></table>
{% endtab %}

{% tab title="Response" %}

```json
{
    "code": 200,
    "msg": "Success",
    "value": null,
    "data": {
        "data": [
            {
                "ma_vt": "API-VT0001",
                "ten_vt": "T-shirt 2",
                "dvt": "CAI",
                "ma_lvt": "61",
                "nh_vt1": "NTXT",
                "datetime2": "2023-12-11T15:08:48.45"
            }
        ],
        "pageInfo": [
            {
                "pagecount": 50,
                "page": 1,
                "t_record": 1,
                "t_page": 1,
                "group": ""
            }
        ]
    }
}
```

## Descripsion result

<table><thead><tr><th width="242">Name</th><th>Descripsion</th></tr></thead><tbody><tr><td>code</td><td>When successfully executed, the status code is 200. For other codes, such as 401, 452, it indicates a failed operation, accompanied by a descriptive message explaining the result</td></tr><tr><td>msg</td><td>Description of API execution results</td></tr><tr><td>data.data</td><td>JSON array containing customers found based on the conditions specified in the request</td></tr><tr><td>data.pageInfo.pagecount</td><td>The maximum result per page that can be returned</td></tr><tr><td>data.pageInfo.page</td><td>The current page number</td></tr><tr><td>data.pageInfo.t_record</td><td>The total number of results across all pages</td></tr><tr><td>data.pageInfo.t_page</td><td>The total number of pages containing results</td></tr></tbody></table>
{% endtab %}
{% endtabs %}

[^1]:


---

# 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:

```
GET https://arito-dev.gitbook.io/arito-api-integration-documentation/list-api/export-goods.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.
