Skip to main content
GET
/
auth
/
v1
/
users
cURL
curl --request GET \
  --url https://api-dev.meeamitech.com/auth/v1/users \
  --header 'Authorization: Bearer <token>'
[
  {
    "message": "User Listed Successfully",
    "data": {
      "_id": "5f43a9f4f36d287b3f9e6b4b",
      "teamId": "5f43a9f4f36d287b3f9e6b3h",
      "firstName": "John",
      "lastName": "Doe",
      "email": "[email protected]",
      "password": "securepassword123",
      "createdAt": "2025-02-06T10:05:15.793Z",
      "updatedAt": "2025-02-07T10:05:15.793Z"
    }
  },
  {
    "_id": "5f43a9f4f36d287b3f9e6b4c",
    "teamId": "5f43a9f4f36d287b3f9e6b3h",
    "firstName": "Jane",
    "lastName": "Smith",
    "email": "[email protected]",
    "password": "anotherpassword456",
    "createdAt": "2025-02-07T10:05:15.793Z",
    "updatedAt": "2025-02-07T10:05:15.793Z"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Get User Details

firstName
string
required

The first name of the user

lastName
string
required

The last name of the user

email
string
required

The email of the user

password
string
required

The password of the user