Skip to main content
GET
https://api.vomo.org/v1
/
users
/
{id}
Get User Details
curl --request GET \
  --url https://api.vomo.org/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "type": "user",
    "id": "7903",
    "first_name": "Priya",
    "last_name": "Sharma",
    "full_name": "Priya Sharma",
    "email": "priya.sharma@example.org",
    "address": "123 Maple Ave, McKinney, TX 75069, USA",
    "phone": "(555) 012-0103",
    "birthday": "1990-03-15",
    "gender": "F",
    "created_at": "2025-11-01T09:00:00+00:00",
    "updated_at": "2025-11-05T14:22:00+00:00",
    "user_status": "VERIFIED",
    "membership_status": "ACCEPTED",
    "membership_role": "ORGANIZER",
    "participations": [
      {
        "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
      }
    ],
    "profile_field_values": []
  }
}

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 user to retrieve.

Response

Returns the full user profile record for the specified member of your organization.

data
object[]
Last modified on June 5, 2026