Skip to main content
GET
/
members
/
{memberId}
Get member
curl --request GET \
  --url https://inboxapp.com/api/v1/members/{memberId} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

memberId
string
required

Response

200 - application/json

OK

id
string
required

The ID of the team member.

Example:

"df6jbw4h36..."

userId
string
required

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

Example:

"df6jbw4h36..."

name
string | null
required
Example:

"John Doe"

email
string<email>
required
Example:

"john.doe@example.com"

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.