Skip to main content
GET
https://api.vomo.org/v1
/
users
List / Find Users
curl --request GET \
  --url https://api.vomo.org/v1/users \
  --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"
    },
    {
      "type": "user",
      "id": "7821",
      "first_name": "Marcus",
      "last_name": "Castellano",
      "full_name": "Marcus Castellano",
      "email": "marcus.castellano@example.org",
      "address": "456 Oak Lane, McKinney, TX 75069, USA",
      "phone": "(555) 012-0101",
      "birthday": "1985-07-22",
      "gender": "M",
      "created_at": "2025-11-02T10:00:00+00:00",
      "updated_at": "2025-11-02T10:00:00+00:00",
      "user_status": "VERIFIED",
      "membership_status": "ACCEPTED",
      "membership_role": "VOLUNTEER"
    },
    {
      "type": "user",
      "id": "8104",
      "first_name": "Aisha",
      "last_name": "Mohamed",
      "full_name": "Aisha Mohamed",
      "email": "aisha.mohamed@example.org",
      "address": "789 Birch Dr, McKinney, TX 75069, USA",
      "phone": "(555) 012-0104",
      "birthday": "1993-11-08",
      "gender": "F",
      "created_at": "2025-11-03T11:00:00+00:00",
      "updated_at": "2025-11-03T11:00:00+00:00",
      "user_status": "VERIFIED",
      "membership_status": "ACCEPTED",
      "membership_role": "VOLUNTEER"
    }
  ],
  "links": {
    "first": "https://api.vomo.org/v1/users?page=1",
    "last": "https://api.vomo.org/v1/users?page=2",
    "prev": null,
    "next": "https://api.vomo.org/v1/users?page=2"
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 2,
    "to": 15,
    "path": "https://api.vomo.org/v1/users",
    "per_page": 15,
    "total": 22
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

Page number (if paging results).

name_like
string

A name, or part of a name, to search for. This searches both the first and last name.

email_like
string

An email address, or part of an address, to search for.

created_before
string<date-time>

Date the User account was created on or before.

created_after
string<date-time>

Date the User account was created on or after

updated_before
string<date-time>

Date the user was updated on or before.

updated_after
string<date-time>

Date the user was updated on or after

Response

Returns the paginated list of users who are members of your organization. The response includes pagination links and meta fields to navigate additional pages.

data
object[]

Pagination navigation links returned on every paginated list response. Each URL points at the specific list endpoint being called.

meta
object

Pagination metadata returned on every paginated list response.

Last modified on June 5, 2026