Skip to main content
GET
https://api.vomo.org/v1
/
forms
/
{id}
/
completions
Get All Completions for a Form
curl --request GET \
  --url https://api.vomo.org/v1/forms/{id}/completions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "form_completion",
      "id": 70001,
      "form_id": 2001,
      "user_id": 7903,
      "project_id": null,
      "participation_id": null,
      "field_responses": [
        {
          "type": "form_field_response",
          "id": 80001,
          "form_completion_id": 70001,
          "user_id": 7903,
          "field_id": 5001,
          "value": "M"
        }
      ],
      "created_at": "2025-11-05T10:00:00+00:00",
      "updated_at": "2025-11-05T10:00:00+00:00"
    },
    {
      "type": "form_completion",
      "id": 70002,
      "form_id": 2001,
      "user_id": 8104,
      "project_id": null,
      "participation_id": null,
      "field_responses": [
        {
          "type": "form_field_response",
          "id": 80002,
          "form_completion_id": 70002,
          "user_id": 8104,
          "field_id": 5001,
          "value": "S"
        }
      ],
      "created_at": "2025-11-06T09:30:00+00:00",
      "updated_at": "2025-11-06T09:30:00+00:00"
    }
  ],
  "links": {
    "first": "https://api.vomo.org/v1/forms/2001/completions?page=1",
    "last": "https://api.vomo.org/v1/forms/2001/completions?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "to": 14,
    "path": "https://api.vomo.org/v1/forms/2001/completions",
    "per_page": 15,
    "total": 14
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

VOMO Form ID

Query Parameters

user_id
integer

Find completions of this form for a given User ID.

created_before
string<date-time>

Date the Form Completion was created on or before.

created_after
string<date-time>

Date the Form Completion was created on or after.

updated_before
string<date-time>

Date the Form Completion was updated on or before.

updated_after
string<date-time>

Date the Form Completion was updated on or after.

Response

Returns the paginated list of form completions for the specified form. The response includes pagination links and meta fields to navigate additional pages.

data
object[]

Pagination navigation links returned on every paginated list response. Each URL points at the specific list endpoint being called.

meta
object

Pagination metadata returned on every paginated list response.

Last modified on June 5, 2026