Get form fills
Description
The method creates an export task for form fill data.
URL
Method: POST
https://example.com/api/v1.1/forms/fills
Request Parameters
| Parameter | Type | Example | Required | Description |
|---|---|---|---|---|
| id | int | 1 | Yes, if shortname is not specified | Form ID |
| shortname | string | form_6Ven2v7O | Yes, if id is not specified | Form short name |
| date_from | string | 2026-04-01 | Yes | Start date of the period. Format: YYYY-MM-DD |
| date_to | string | 2026-04-30 | Yes | End date of the period. Format: YYYY-MM-DD |
Request Example
- JSON
- XML
{
"id": 1,
"date_from": "2026-04-01",
"date_to": "2026-04-30"
}
<xml>
<id>1</id>
<date_from>2026-04-01</date_from>
<date_to>2026-04-30</date_to>
</xml>