Skip to main content
GET
/
members
List members
curl --request GET \
  --url https://inboxapp.com/api/v1/members
[
  {
    "id": "<string>",
    "userId": "<string>",
    "name": "John Doe",
    "email": "jsmith@example.com",
    "image": "https://example.com/john-doe.jpg",
    "role": "owner",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Response

200 - application/json

OK

id
string
required

The ID of the team member.

userId
string
required

The user ID of the member. Users can be part of multiple teams.

name
string | null
required
Example:

"John Doe"

email
string<email>
required
image
string | null
required
Example:

"https://example.com/john-doe.jpg"

role
enum<string>
required
Available options:
owner,
admin,
user
createdAt
string<date-time>
required

The date and time this member was added to the team.

updatedAt
string<date-time> | null
required

The date and time this member was last updated.