> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scanova.io/llms.txt
> Use this file to discover all available pages before exploring further.

# سرد استجابات النموذج

> GET /forms/{form_id}/responses/

يسرد الإرساليات ("الاستجابات") التي جمعها نموذج.

<Note>
  يتطلب مفتاح واجهة برمجة تطبيقات إدارة بحصة `MANAGEMENT_API` (أو `MANAGEMENT_API_SANDBOX`) وصلاحية `LEAD_GENERATION_ENTRY_CAN_VIEW`، يُرسَل كقيمة خام لترويسة `Authorization` — راجع [نظرة عامة على واجهة برمجة التطبيقات للإدارة](/ar/api-reference/management-api/overview).
</Note>

<ParamField path="form_id" type="string" required>
  معرّف `form_id` للنموذج.
</ParamField>

<ParamField query="qr_code_id" type="string">
  يصفّي الاستجابات المُرسَلة عبر رمز QR محدد، حسب `qrid`.
</ParamField>

<ParamField query="created_from" type="string">
  الاستجابات التي أُنشئت في هذا التاريخ أو بعده فقط (`YYYY-MM-DD`).
</ParamField>

<ParamField query="created_till" type="string">
  الاستجابات التي أُنشئت في هذا التاريخ أو قبله فقط (`YYYY-MM-DD`).
</ParamField>

<ParamField query="search" type="string">
  بحث عن سلسلة فرعية عبر الإجابات المُرسَلة واسم رمز QR المرتبط.
</ParamField>

<ParamField query="ordering" type="string">
  `created` أو `-created`. القيمة الافتراضية هي `-created`.
</ParamField>

<ParamField query="page" type="integer">
  رقم الصفحة.
</ParamField>

<ParamField query="page_size" type="integer">
  عدد النتائج لكل صفحة، حتى 200. الافتراضي 20.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.scanova.io/forms/F8a9b0c1d2e3f4g5h/responses/?ordering=-created' \
    --header 'Authorization: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
      {
        "id": "b3f1c9a2-1234-4d1a-9c6e-3a2b7f9d1e40",
        "created": "2026-09-01T10:15:00Z",
        "qr_code_id": "Q07afe81aa0034c01",
        "qr_code_name": "docs-v2-first-qr-code",
        "data": [
          { "question": "Full name", "answer": "Jane Doe" },
          { "question": "Email", "answer": "jane@example.com" }
        ],
        "created_by": { "full_name": "Jane Doe", "email": "jane@example.com" },
        "is_skipped": false
      }
    ]
  }
  ```
</ResponseExample>

تُستبعَد دائمًا الإرساليات المتخطاة/غير المكتملة من هذه القائمة. يُعاد `404` إذا لم يكن `form_id` يملكه هذا الحساب.

<Note>
  إذا تم تحويل هذا النموذج من [قائمة عملاء محتملين](/ar/api-reference/management-api/leads/convert) قديمة، فإن الاستجابات التي تم جمعها قبل التحويل تُدمَج بشكل شفاف في هذه القائمة نفسها — يمكن أن تأتي معرّفات الاستجابة في تلك الحالة إما من مخزن استجابات النموذج الحالي أو من مخزن إدخالات العملاء المحتملين القديم، لكن الشكل المُعاد يكون متطابقًا في كلتا الحالتين.
</Note>

## ذو صلة

* [حذف استجابة نموذج](/ar/api-reference/management-api/forms/response-delete) — إزالة استجابة واحدة.
* [حذف استجابات النموذج دفعة واحدة](/ar/api-reference/management-api/forms/responses-bulk-delete) — إزالة عدة استجابات دفعة واحدة.
* [تصدير استجابات النموذج](/ar/api-reference/management-api/forms/export) — تنزيل الاستجابات كملف CSV/XLSX.
* [نظرة عامة على واجهة برمجة التطبيقات للإدارة](/ar/api-reference/management-api/overview) — مخطط المصادقة وبنية الحصص التي ينتمي إليها هذا الطرف.


## OpenAPI

````yaml api-reference/openapi/management-api.json GET /forms/{form_id}/responses/
openapi: 3.1.0
info:
  title: Scanova Management API (v2)
  description: >-
    The complete Scanova Management API — every endpoint available at
    api.scanova.io (QR codes, folders, tags, leads, forms, analytics, plans,
    shared users & roles), plus the token-creation and usage-stats endpoints
    used to authenticate against it. Every path and request/response shape below
    was verified live against a real API key and the actual running backend
    (Phase 7, 2026-08-16) — not guessed from reading urls.py alone.
  version: 2.0.0
servers:
  - url: https://api.scanova.io
    description: Management API — QR/folder/tag/lead/form/analytics/plans endpoints
security:
  - apiKeyAuth: []
paths:
  /forms/{form_id}/responses/:
    get:
      summary: List form responses
      operationId: listManagedFormResponses
      responses:
        '200':
          description: Paginated list of form submissions.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Send your Management API key as the raw value of the Authorization
        header — no "Bearer " or "Token " prefix, and no other characters.
        Example: `Authorization: 401f7ac837da42b97f613d789819ff93537bee6a`. A
        header containing more than one space-separated part is rejected
        outright. Requests also require the request's Host header to be the
        management API host (e.g. api.scanova.io) — the same key sent to the
        regular API host will not authenticate.

````