v1

latestOpenAPI 3.0.02026-08-062438369.6 KB
Projects

Get Project Date Details

Returns the detail record for a single project serving date (also called a 'happening'), including the list of participants who signed up. The serving date must belong to a project in your organization; requests for dates outside your organization return a 400 error.

get/projects/date/{id}

Path parameters

idinteger required

The unique VOMO identifier for the project serving date to retrieve.

Response

Returns the serving date detail record, including its start and end times, participant count, and the list of participants with their check-in details and hours.

Example response

{
  "data": {
    "type": "project_date",
    "id": "5678",
    "project_name": "Volunteer Project",
    "starts_at": "2020-01-01T12:00:00+00:00",
    "ends_at": "2020-01-01T14:00:00+00:00",
    "participant_count": 20,
    "participants": [
      {
        "type": "user",
        "id": 123456,
        "email": "user@vomo.org",
        "guests": 2,
        "checked_in_at": "2020-01-01T12:00:00+00:00",
        "checked_out_at": "2020-01-01T14:00:00+00:00",
        "signed_up_at": "2020-01-01T12:00:00+00:00",
        "hours": "4.00",
        "role": "Volunteer",
        "project_id": 1234,
        "project_date_id": 5678,
        "form_completions": [
          {
            "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"
              }
            ]
          }
        ]
      }
    ]
  }
}