v1

latestOpenAPI 3.0.02026-08-062438369.6 KB
Forms

Get a single form 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.

get/forms/{id}/completions/{completion}

Path parameters

idinteger required

The unique VOMO identifier for the form.

completioninteger required

The unique VOMO identifier for the form completion record to retrieve.

Response

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

Example response

{
  "data": {
    "type": "form_completion",
    "project_id": 1,
    "participation_id": 1,
    "updated_at": "2016-03-07T07:49:41+00:00",
    "created_at": "2016-03-07T07:49:41+00:00",
    "field_responses": [
      {
        "type": "form_field_response",
        "value": "S"
      }
    ]
  }
}