# Экспорт платежей

<mark style="color:green;">`POST`</mark> <https://lk.cactuspay.pro/client/shop/export>

#### Параметры body `application/json`

<table><thead><tr><th width="169">Имя</th><th width="121">Тип</th><th>Описание</th></tr></thead><tbody><tr><td>token <mark style="color:red;"><code>*</code></mark></td><td>STRING</td><td>Ключ вашего магазина, держите его в секрете</td></tr><tr><td>dateFrom <mark style="color:red;"><code>*</code></mark></td><td>NUMBER / STRING</td><td>Дата начала в UNIX или ISO 8601</td></tr><tr><td>dateTo <mark style="color:red;"><code>*</code></mark></td><td>NUMBER / STRING</td><td>Дата начала в UNIX или ISO 8601</td></tr></tbody></table>

Ответ вы получите:

```json
{
    "status": "success",
    "response": {
        "payments": [],
        "statistics": {
            "totalAmount": 0,
            "totalProfit": 0,
            "totalCount": 0
        }
    }
}
```

payments  &#x20;

```json
"id": 0,
"type": "ONE-TIME", // ONE-TIME / MULTIPLY
"orderId": "***",
"amount": 0,
"profit": 0,
"formattedDate": "15.05.2025 15:57:34",
"timestampDate": 1747313854,
"requisites": "***",
"rate": 94.304,
"status": "WAIT" // WAIT / ACCEPT
```
