Skip to main content
GET
https://api.vomo.org/v1
/
projects
/
date
/
{id}
Get Project Date Details
curl --request GET \
  --url https://api.vomo.org/v1/projects/date/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "type": "project_date",
    "id": "40001",
    "project_name": "Saturday Pantry Pack",
    "starts_at": "2025-11-15T09:00:00+00:00",
    "ends_at": "2025-11-15T12:00:00+00:00",
    "participant_count": 2,
    "participants": [
      {
        "type": "user",
        "id": 7903,
        "email": "priya.sharma@example.org",
        "guests": 1,
        "checked_in_at": "2025-11-15T09:04:00+00:00",
        "checked_out_at": "2025-11-15T12:01:00+00:00",
        "signed_up_at": "2025-11-10T14:00:00+00:00",
        "hours": "3.00",
        "verified": 1,
        "role": "Packer",
        "project_id": 4001,
        "project_date_id": 40001,
        "form_completions": []
      },
      {
        "type": "user",
        "id": 8104,
        "email": "aisha.mohamed@example.org",
        "guests": 0,
        "checked_in_at": null,
        "checked_out_at": null,
        "signed_up_at": "2025-11-11T09:30:00+00:00",
        "hours": "3.00",
        "verified": 0,
        "role": "Volunteer",
        "project_id": 4001,
        "project_date_id": 40001,
        "form_completions": []
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
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.

data
object

A VOMO Project Serving Date with participants

Last modified on June 5, 2026