---
title: "Get a single form completion"
method: GET
path: "/forms/{id}/completions/{completion}"
tags: ["Forms"]
---

# Get a single form completion

`GET /forms/{id}/completions/{completion}`

Returns the full detail record for a single form completion, including all field responses submitted by the volunteer. Use this endpoint to retrieve the specific answers a user provided when completing a form.

## Path parameters

- `id` integer, required
- `completion` integer, required

## Response `200`

Returns the full form completion record, including all field responses submitted by the volunteer.

- object
  - `data` FormCompletionResource — List of Form Completions
    - `type` string — The type of VOMO Object
    - `id` integer — The ID of the form completion
    - `form_id` integer — The ID of the form
    - `user_id` integer — The ID of the user who completed the form
    - `project_id` integer, nullable — The ID of the project this form submission is associated with
    - `participation_id` integer, nullable — The ID of the participation this form submission is associated with
    - `updated_at` string, date-time — The date and time the form completion was updated at
    - `created_at` string, date-time — The date and time the form completion was created at
    - `field_responses` FormFieldResponseResource[] — The form field responses
      - `type` string — The type of VOMO Object
      - `id` integer — The ID of the response
      - `form_completion_id` integer — The ID of the form completion
      - `user_id` integer — The ID of the user who completed the form field
      - `field_id` integer — The ID of the form field
      - `value` string, nullable — The raw answer value for this field response. What this contains varies by field type: SHORTTEXT and LONGTEXT — the text the volunteer entered; DROPDOWN — the name of the selected option; GROUP — a JSON array of group IDs the volunteer was assigned to; DOCUMENTUPLOAD — the identifier of the uploaded file; WAIVER — the acceptance string; MULTIPLESELECT — not currently populated (selections for multiple-select fields are stored separately and are not returned in this field).

## Other responses

- `401` — Authentication credentials are missing or invalid.
- `404` — No form or form completion exists with the provided ID.
- `429` — You have exceeded the rate limit of 30 requests per minute per API key.
- `500` — An unexpected server error occurred.

---

[API](https://skmtc.dev/vomo/apis/vomo-api.md) · [All operations](https://skmtc.dev/vomo/apis/vomo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/vomo/vomo-api/revisions/1582d52b5f1f/schema)
